Hi there,
This should already be the case. Active menu items end up with a green background. This is done with the StaticSelectedStyle:
Code:
<asp:Menu ID="Menu1" runat="server" CssClass="MainMenu" ... >
<StaticSelectedStyle CssClass="StaticSelectedStyle" />
...
</asp:Menu>
and this CSS:
Code:
.StaticHoverStyle, .StaticSelectedStyle
{
/* Defines the look of active and hover menu items */
background-color: #c1e4ce;
}
You can do the same for the sub menus:
Quote:
|
<DynamicSelectedStyle CssClass="SomeClass" />
|
with this CSS
Code:
.SomeClass
{
background-color: red;
}
Cheers,
Imar