So these are the effects I am using for my navigation system in my site;
a:link{
font-family:"Berlin Sans FB Demi";
text-align:center;
color:black;
text-decoration:none;
}
a:visited{
color:black;
text-decoration:none;
}
a:hover{
color:#37414A;
text-decoration:none;
}
a:active{
color:#37414A;
text-decoration:none;
}
The problem I have is that they are all using the 'a' tag, this means that all of the hyperlinks I am using in the page are using the above effects.
How do I make it so that the navigation system only use these effects?
Thanks