Click to See Complete Forum and Search --> : Add underline to css style link?


KayEnt
07-10-2003, 11:58 PM
How can I make this style underline when hovering and then be the color black after the surfer has clicked that link before?

Sorry, I'm slow.

<STYLE TYPE="text/css">
<!--
.navigation {cursor:pointer;cursor:hand;text-decoration: none;color:white;}</style>

Thanks,

Jon

Stellar
07-11-2003, 02:43 AM
I think this may be what you are asking for..

<style type="text/css"><!--
a.navigation:hover { text-decoration:none; border-bottom:1px solid #fff }
a.navigation:visited { text-decoration:none; border-bottom:1px solid #000 }
--></style>