Guest Posted May 30, 2007 Share Posted May 30, 2007 I have my template installed and customized 99% how I need it. However, the catagories list opens the sub-cats, but they all seem to blend in. Is there code I can change to change the color of the catagories depending on where the use is in the tree? If you need link to store - it's http://www.bluealanaboutique.com Thanks in advance for any/all advice. Quote Link to comment Share on other sites More sharing options...
torgil Posted May 31, 2007 Share Posted May 31, 2007 I assume you are talking about the text-color of the subcategory text links? The color of those links are defined asclasses in the file stylesheet.css The class you should be looking for is called: .smallText It is probably set to the color code: #ffffff - which is white. But you need to define 2 more classes for this text, that makes the color white not only for plain text but also for link text: Add this to your stylesheet and see if it helps: ----------------------------------------------------- .smallText A { color: #ffffff; text-decoration: underline; } .smallText A:hover { color: #ffffff; text-decoration: none; } ----------------------------------------------------- This should turn the link text for your subcategories white and keep all other formatting as it is right now. Quote Torgil Benigh ---------------------------------------------------------------- Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.