PDA

View Full Version : How can I change...


Kermit911
6-17-04, 11:34 AM
I have a table, and all the text is yellow, but when they click on the text to download "Whatever" it turns purple. How can I change this? Purple on a black background doesn't work. Thanx

Dave

BerksWebGuy
6-17-04, 11:40 AM
Depends in you wanna use CSS or not. If you're just using html...then make your body tag look like this:

<BODY TEXT="#FFFFFF" LINK="#FFFF00" VLINK="#33FF33" ALINK="#FF0000" BGCOLOR="#000000">

TEXT which sets the color of text on the web page
LINK which sets the color of links you haven't followed
VLINK which sets the color of links you have followed
ALINK which sets the color of links as you click on them
BGCOLOR which sets the background color

Kermit911
6-17-04, 11:41 AM
Thanx a lot

Your a BIG help

Dave