16-08-2004, 10:32
|
#9 (permalink)
|
|
css is for divs
Join Date: Feb 2003
Location: Norwich
Posts: 4,508
|
Code:
a:link {
text-decoration: none;
color: #666666;
}
a:visited
{
color: #666666;
}
a:hover{
text-decoration: underline;
}
a:active{
text-decoration: underline!important;
color: #FF3333!important;
}
|
|
|
|