I\'m creating a navigation menu with words with different colors (href links). I would like the color NOT to change on any state (hover, visited etc).
href
I
if you state a.redLink{color:red;} then to keep this on hover and such add a.redLink:hover{color:red;} This will make sure no other hover states will change the color of your links
a.redLink{color:red;}
a.redLink:hover{color:red;}