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
You can just use an a selector in your stylesheet to define all states of an anchor/hyperlink. For example:
a
a { color: blue; }
Would override all link styles and make all the states the colour blue.