Hover Underline Problem

liunx

Guest
I have three different types of links. The two (mainlink and sublink) I want underlined when I hover over them. When I hover over the third one (toplevel) I don't want an underline. I have tried a few combinations, but none seem to work. Any help or ideas?


.mainlink{
text-decoration:none;
font-weight:bold;
color:darkorange;
}

.toplevel {
text-decoration: none;
color: #0E1E7D;
}

.sublink {
font-size: 10px;
text-decoration:none;
color:darkorange;
}

AndrewMight need to see your page there... or the rest of your code...It's alright, I figured it out. I just used

.toplevel:hover
{
text-decoration:none;
color: #330066;
}
 
Back
Top