-
Adam sharpe
6
posts
Member since:
May 2010
Posted 12 Oct 2010
Link to this post
What would be the correct CSS code to use to have the text color of the main root menu change when the menu is moused over and while hovering over the sub-items?
Right now I'm using this to set the color to white:
.RadMenu a.rmLink
{
cursor: default;
display: block;
text-decoration: none;
font-family: Arial, Helvetica, sans-serif;
font-size: 12px;
color: #ffffff;
}
and I want the color to change to black (#000000) while that menu is open. Thanks!
-
-
Adam sharpe
6
posts
Member since:
May 2010
Posted 12 Oct 2010
Link to this post
Got it working...
.RadMenu a.rmExpanded
{
color: #000000 !important;
}
-