HTML question - how to remove that blue color and underlined text after you click?

It depends on how you use your CSS for the anchor tags.
Here is some sample CSS that you can use:

a:visited {
color: YOURCOLOR;
text-decoration: none;
}

You can make it the same color if you want, but that is how you change the color and underline of the links.
Look up CSS for anchor tags and font.

Hope this helps.
 
That blue color is actually the default color of a visited link (vlink).

To remove it write the following piece of code in your document.

Attributes for <BODY ...>
TEXT = color expression
ALINK = color expression
LINK = color expression
VLINK = color expression

So to change the blue color simply put the code for blue in vlink=color expression and thats it.

To remove the underline.....add the nounderline attribute to your css code.

All these can be easily done in adobe dreamveawer if you dont link to code.
 
Back
Top