purplemartinart Posted August 27, 2008 Posted August 27, 2008 I have searched in this forum and can't seem to find it. I am trying to make the text a little larger/bolder/more obvious in the categories box on my site. I just want to make it more obvious that you click on those category names to see the items within the sections. My site is really basic. Any ideas without redoing the whole site? Perhaps an add on that I am not aware of?? In case you want to see my humble site...www.purplemartins-r-us.com/catalog thanks for your input! Thanks, Susan Proudly uses Oscommerce!
Guest Posted August 28, 2008 Posted August 28, 2008 http://www.google.co.uk/search?num=100&...earch&meta=
Guest Posted August 28, 2008 Posted August 28, 2008 The styles that control it are in the catalog/stylesheet.css. They are .boxText{ This controls the text } A{ This controls the link } A:hover{ This controls the links hover } You can set up a new A class like so. Add to catalog/stylesheet.css A.category_links { color: #000000; font-size: 12px; text-decoration: none; } A.category_links:hover { color: #0000FF; font-size: 12ps; text-decoration: underline; } Then in catalog/includes/boxes/categories.php find $categories_string .= '<a href="'; Change to $categories_string .= '<a class="category_links" href="'; That will handle just the links for the categories box only. This gives an explination of the stylesheet Click Me
purplemartinart Posted August 28, 2008 Author Posted August 28, 2008 THANKS BKtrain! That is just what I needed. I can't tell one item in the code from another, so knowing which one to change is a godsend. Thanks so much! Thanks, Susan Proudly uses Oscommerce!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.