...the CSS attributes wouldn't work when it came to the links.
What did you try and where did you define your CSS, inline, in the Head or in an external file?
Post your code for people to work on.
To define the colour and text-decoration of links you can write something like this, either inside Style Tags in the Head or in an external CSS file:
Code:
a:link { color: blue; text-decoration: none; }
a:hover { color: red; text-decoration: underline; }
a: visited, a: active { color: #330033; }
good luck!
dog
Bookmarks