PDA

View Full Version : URL Decoration Help



CrispyGoat
December 11th, 2004, 01:48 PM
This is my code: (without the style thingy)

p, td, body {cursor : default;}
a:link { text-decoration: none; color: #FFFFFF;}
a:hover { text-decoration: none; color: #FFFFFF;}
a:active { text-decoration: none; color: #000000;}
a:visited { text-decoration: none; color: #FFFFFF;}


Can anyone tell me / change the script for the links to be white, but when you put your mouse over the link becomes bold and the color: 453434

thx alot, crispygoat

λ
December 11th, 2004, 04:10 PM
Here is the one you're after ;)


a:active { text-decoration: none; color: #FFFFFF;}
a:link { text-decoration: none; color: #FFFFFF;}
a:hover { text-decoration: none; color: #453434; font-weight:bold;}
a:visited { text-decoration: none; color: #FFFFFF;}


Make sure you put them in that order though.