charmedbytina2:
Jettrue - sick of me yet? :blink:
I've had a few suggestions on the site I'm building with your template.
First: "the black category words above your drop down menu is very hard to read". Also at the top the Home/Log In is hard to read.
Second: "rollover text colors do need to be reconsidered - including category flyouts". And they mean it: "The rollovers need work as well"
Can you tell me which files need to be addressed to change the font colors?
Thanks!
http://charmsandmore.charmedbytina.com
You would do that in the css.
#navCatTabsWrapper a:link, #navMainWrapper a:link {color:#ffffff;}
#navCatTabsWrapper a:hover, #navMainWrapper a:hover {color:#ffffff;}
#navCatTabsWrapper a:visited, #navMainWrapper a:visited {color:#ffffff;}
The category rollovers for the dropdown menu are in the stylesheet_header_menu.css stylesheet, and to change the link colors for the site in general, you would do that with this section:
a:link {
color:#4f4f4f; /*site links color */
text-decoration:none;
}
a:visited {
text-decoration:none;
color:#313131;
}
a:hover {
color:#000000; /* color when links are hovered over */
text-decoration:none;
}