AlbertAguirre
Programmer
I would like my regular page / content links to be one style but my navigational links to be another.
I created a class called leftNav and it looks good, but when I format my normal links "a:link {color: #888888;}" my "leftNav" class is over written.
How do I avoid this?
css code:
a:link {color: #888888;}
a:link:hover {color: #ffffff;} <-- this overrides the style below
a.leftNav {color: #FFFFFF;}
a.leftNav:hover {color: #888888;}
I created a class called leftNav and it looks good, but when I format my normal links "a:link {color: #888888;}" my "leftNav" class is over written.
How do I avoid this?
css code:
a:link {color: #888888;}
a:link:hover {color: #ffffff;} <-- this overrides the style below
a.leftNav {color: #FFFFFF;}
a.leftNav:hover {color: #888888;}