C
Cal Who
I do not want underlines on my menu items
<asp:Menu ..snip..StaticHoverStyle-CssClass="ahover"
But I would like them on anchor elements
See the <a href="http://www.=XYZnews.org/">XYZ</a> site for more
information.
So I did this:
a:hover
{
font-size: larger;
font-weight: bold;
text-decoration: underline ;
}
..ahover
{
font-size: larger;
font-weight: bold;
text-decoration: none ;
}
I get no underlines at all.
But if I add !Important to the a:hover I get underlines in both places.
I also tried other placements of !mportant.
Do you know how to uncouple these elements?
Thanks
<asp:Menu ..snip..StaticHoverStyle-CssClass="ahover"
But I would like them on anchor elements
See the <a href="http://www.=XYZnews.org/">XYZ</a> site for more
information.
So I did this:
a:hover
{
font-size: larger;
font-weight: bold;
text-decoration: underline ;
}
..ahover
{
font-size: larger;
font-weight: bold;
text-decoration: none ;
}
I get no underlines at all.
But if I add !Important to the a:hover I get underlines in both places.
I also tried other placements of !mportant.
Do you know how to uncouple these elements?
Thanks