.mmenuOff1
{
background: #660000;
color: #ffffff;
font-style: normal;
font-weight: normal;
font-family: arial,tahoma,serif;
font-size: 13px;
margin: 0px;
padding: 3px;
text-decoration: none;
}
.mmenuOn1
{
background: #660000;
color: #ffffff;
font-style: normal;
font-weight: normal;
font-family: arial,tahoma,serif;
font-size: 13px;
margin: 0px;
padding: 3px;
text-decoration: underline;
}
which works well, until I add the desired default hyperlink information:
A:link {
color: #660000;
text-decoration: none;
}
A:visited {
color: #660000;
text-decoration: none;
}
A:active {
color: #660000;
text-decoration: none;
}
A:hover {
color: #660000;
text-decoration: underline;
}
When I add the latter, the text color and decoration overpowers the former, thus making the menu have same color background as text.
I have tried to return the text color and decoration to the milonic menu (have to keep the size in css as otherwise it is always too large), but the concept of "link" appears to still be overwriten by the css "link" instructions.
http://www.ciclt.net/sn/clt/gmc/home.aspx
http://www.ciclt.net/sn/clt/gmc/home2.aspx
What am I missing!!

Thanks-
Stuart