♥toyicebear 206 Posted September 16, 2007 hi,i edit the code in the css but my problem is to change the borders of the td tr inside the table. I dont found any class in stylesheet for this modification. for example. editing the css. border red background white editing the css border red background #eeeee the borders inside of this box didn't change the color... my aim: all borders red and background white i know this modification is not a problem with the basic design pack, but i hope you can help me :) thnx for help :) you can add a borderdefine under: TD.productListing-data Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
Thunder_BLN 0 Posted September 16, 2007 you can add a borderdefine under: TD.productListing-data marci :) Share this post Link to post Share on other sites
gvees 0 Posted September 21, 2007 (edited) So our webshop is finally online and working as a charm..! Looking sweet to thanks to your pack, toyicebear! Thanks a lot for it!! I have one question though.. I want the category counts to be on the same line as the category it belongs to. It now is a line below it. I've taken a look into the code already but can't figure out what's wrong. There are no 'br'-s in the code on the place where, at least I think, it defines the category count.. Any help would be awesome! Here's a quick screenshot of what I mean: by the way, the shop is located at: www.degierguitars.com/webshop/ Edited September 21, 2007 by gvees Share this post Link to post Share on other sites
♥toyicebear 206 Posted September 22, 2007 So our webshop is finally online and working as a charm..! Looking sweet to thanks to your pack, toyicebear! Thanks a lot for it!! I have one question though.. I want the category counts to be on the same line as the category it belongs to. It now is a line below it. I've taken a look into the code already but can't figure out what's wrong. There are no 'br'-s in the code on the place where, at least I think, it defines the category count.. Any help would be awesome! Here's a quick screenshot of what I mean: by the way, the shop is located at: www.degierguitars.com/webshop/ Its highly recommended to turn of show category count in your web shops admin, this will make your site faster. But if you want to keep it and have it on the same line, do this: in includes/boxes/categories.php change: $categories_string .= '</a>'; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= '(' . $products_in_category . ')'; } } TO: if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= ' (' . $products_in_category . ')'; } } $categories_string .= '</a>'; Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
adam777 0 Posted October 10, 2007 Its highly recommended to turn of show category count in your web shops admin, this will make your site faster. Where exactly do I turn off the "count" in the admin section? :blink: ... thanks for this great contribution! Share this post Link to post Share on other sites
adam777 0 Posted October 10, 2007 ... also how do you remove the blank lines between the category items so I can fit more in closer together? eg hardware <--- gap that i need to remove software <--- gap that i need to remove DVD movies TO GET THIS: hardware software movies Share this post Link to post Share on other sites
♥toyicebear 206 Posted October 10, 2007 in your admin under Configuration >> my store set show category count to "false" now both the space and the category count will be gone in the category box..... Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
Hangar24 0 Posted October 30, 2007 Anyone know how to get rid of the gray arc graphic in the header? I have tried to locate the file or the code to get rid of it all together, but can't seem to find it. Thanks. Share this post Link to post Share on other sites
♥toyicebear 206 Posted October 31, 2007 Anyone know how to get rid of the gray arc graphic in the header? I have tried to locate the file or the code to get rid of it all together, but can't seem to find it. Thanks. in stylesheet.css Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
mjbech 0 Posted November 3, 2007 Howdy, I used your Basic Design and am modifying it somewhat using the stylesheet. But the shop is not centered? Under construction but you can see it here: http://www.qualitysweatshirts.com/catalog/index.php Any idea of what I did wrong? Thanks in advance. Mike Share this post Link to post Share on other sites
♥toyicebear 206 Posted November 3, 2007 Howdy, I used your Basic Design and am modifying it somewhat using the stylesheet. But the shop is not centered? Under construction but you can see it here: http://www.qualitysweatshirts.com/catalog/index.php Any idea of what I did wrong? Thanks in advance. Mike Well the centering has 3 parts... - one opening div in the header.. - one closing div in the footer - and a definition in the stylesheet.css file So the check those 3 files in your shop against the original files from the contribution to see where you might have gone wrong. Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
Jacksback 0 Posted November 4, 2007 (edited) Hi toyicebear, great contrib...can you tell me how to achieve rounded corners on the bottom of all boxes...I have spent about 30 hours searching the forum and I am either missing the correct terminology or maybe I'm just a dumb c*nt...I am looking to achieve boxes (rounded left, right, top and bottom) like Website. Thanks Ronnie Edited November 4, 2007 by Jacksback Share this post Link to post Share on other sites
♥toyicebear 206 Posted November 4, 2007 Hi toyicebear, great contrib...can you tell me how to achieve rounded corners on the bottom of all boxes...I have spent about 30 hours searching the forum and I am either missing the correct terminology or maybe I'm just a dumb c*nt...I am looking to achieve boxes (rounded left, right, top and bottom) like Website.Thanks Ronnie They are using this contrib: Graphical Infoboxes Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
Jacksback 0 Posted November 5, 2007 They are using this contrib: Graphical Infoboxes Thanks toyicebear for the quick resonse, I really appreciate the help. Thanks again Ronnie Share this post Link to post Share on other sites
mjbech 0 Posted November 5, 2007 Well the centering has 3 parts... - one opening div in the header.. - one closing div in the footer - and a definition in the stylesheet.css file So the check those 3 files in your shop against the original files from the contribution to see where you might have gone wrong. Found the problem... thanks for the guidance. Mike Share this post Link to post Share on other sites
Jcey 0 Posted December 1, 2007 I want to change the width of the table... I've tried doing this by changing the 100% to the size i want but only the columns and writing are stretching... It's not being centred and it's not changing the width of the outline of the site... Any suggestions is appreciated :) Share this post Link to post Share on other sites
♥toyicebear 206 Posted December 2, 2007 I want to change the width of the table... I've tried doing this by changing the 100% to the size i want but only the columns and writing are stretching... It's not being centred and it's not changing the width of the outline of the site... Any suggestions is appreciated :) the width of the site is set in stylesheet.css Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
franmusic 0 Posted December 7, 2007 why do i have red x's in my boxes please help http://customerbeads.lovewebdesigns.com/ca...277006d4e74af70 Share this post Link to post Share on other sites
♥toyicebear 206 Posted December 7, 2007 (edited) why do i have red x's in my boxes please helphttp://customerbeads.lovewebdesigns.com/ca...277006d4e74af70 Looks ok now.... But the common error causing this is that not all the files, folders and images from the BDP has been uploaded.... Edited December 7, 2007 by toyicebear Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
franmusic 0 Posted December 7, 2007 Looks ok now.... But the common error causing this is that not all the files, folders and images from the BDP has been uploaded.... i thought i had i will try again thanks for responding.... Share this post Link to post Share on other sites
franmusic 0 Posted December 7, 2007 i thought i had i will try again thanks for responding.... still not working right still has red x i went through it again Share this post Link to post Share on other sites
♥toyicebear 206 Posted December 7, 2007 still not working right still has red x i went through it again Check the bdp folder and then check your install and make sure that all the files and folders are uploaded to your website.... Alternatively upload it again overwriting the original files. Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites
bagtodrag 0 Posted December 9, 2007 Im using the latest version and don't want to use the CSS buttons I would rather use what I designed, how can I go about making that change? Share this post Link to post Share on other sites
♥toyicebear 206 Posted December 10, 2007 Im using the latest version and don't want to use the CSS buttons I would rather use what I designed, how can I go about making that change? Go to page 1 of this support tread and start reading..it has been described how to do that earlier in this tread... Basics for osC 2.2 Design - Basics for Design V2.3+ - Seo & Sef Url's - Meta Tags for Your osC Shop - Steps to prevent Fraud... - MS3 and Team News... - SEO, Meta Tags, SEF Urls and osCommerce - Commercial Support Inquiries - OSC 2.3+ How To To see what more i can do for you check out my profile [click here] Share this post Link to post Share on other sites