|
hi,
on a webpage i'm making i want to use two different a, a:hover and a:visited, because i want one of the links to look different.
my general a, a:hover, a:visited are;
a{
text-decoration:none;
color:#000000;
font-family:verdana ,arial;
font-size:10px;
font-weight:bold;
}
a:visited{
color:#656462;
}
a:hover{
color:#ce281a;
}
now i'm trying to make a class for the other link i want the different effect on. But lets say if i make an a class i can't make a:hover and a:visited. So my question is how can i make a class or id that changes a, a:hover, a:visited for just one specified text link.
Thanks
|