|
I would like to point out that you don't need to make link classes for every regular class you are using.
If you add your link styles one time in the stylesheet, they will be applied to all links.
Then if you have links that you want to do special stuff to, give those a class. But don't give all links a class.
Just put this once in your stylesheet:
[code:1:9a44e260ec]a {text-decoration: none; color: #color;}
a:hover {text-decoration: underline;} [/code:1:9a44e260ec]
|