I have a menu control in a master page. This menu is loaded from database.
All is good EXCEPT the dynamic menu items' text color: I do not know how to change this without affecting other hyperlinks.
I was told to use CSS like this:
.MenuStyle a:link, a:visited, a:active
{
color:White;
}
.MenuStyle a:hover
{
color: #9b4040;
background-color: White;
}
But when I do this, ALL hyperlinks everywhere are affected.
Any ideas would be most appreciated.
Thank you,
================
Saavik