This is a migrated thread and some comments may be shown as answers.

CSS for Active Menu Item

1 Answer 75 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Adam sharpe
Top achievements
Rank 1
Adam sharpe asked on 12 Oct 2010, 09:39 PM
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!

1 Answer, 1 is accepted

Sort by
0
Adam sharpe
Top achievements
Rank 1
answered on 12 Oct 2010, 09:43 PM
Got it working...

.RadMenu a.rmExpanded
{
    color: #000000 !important;
}
Tags
Menu
Asked by
Adam sharpe
Top achievements
Rank 1
Answers by
Adam sharpe
Top achievements
Rank 1
Share this question
or