Forum Moderators: not2easy

Message Too Old, No Replies

Steverino

Cant get link underline to appear on rollover

         

Steverino

1:44 pm on Feb 4, 2005 (gmt 0)

10+ Year Member



Just trying to get the underlines on links to only appear when you rollover the link.

here is my css code:

a
{
color: #003366;
font-family: Arial, Helvetica, sans-serif;
text-decoration: none;
font-size: 11px;
font-style: normal;
font-weight: normal;
}

a:link {color: #000063; text-decoration: none;
}

a:hover {color: #FF9A00; text-decoration: underline;
}

a:visited {text-decoration: none;
}

a:active {text-decoration: none;
}

benihana

1:46 pm on Feb 4, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



its a question of order. it should be:

link
visited
hover
active

Steverino

2:17 pm on Feb 4, 2005 (gmt 0)

10+ Year Member



God Bless Ya!...lol....I knew it was something simple...Thanks again!