ok the links at the top of my site
http://www.animelink.be/beta/index.php
are pretty cool
anyway when you hover, the text color should be black
but after you visit the link, it stays gray but it shows the underline
heres the code
Code:
#links a:link {
font-weight: bold;
text-decoration: none;
color: #999FAD;
background-color: #DDDDDD;
}
#links a:hover {
font-weight: bold;
text-decoration: none;
color: #000;
background-color: #DDDDDD;
border-bottom: 4px solid #000;
}
#links a:visited {
font-weight: bold;
text-decoration: none;
color: #999FAD;
background-color: #DDDDDD;
}
|