HYPER;INK COLOR CHANGE

Ted1

Senior member
Aug 22, 2000
202
0
0
How can I get my hyperlinks to be different colors than on another. EG: Hyperlink#1 = the color blue - Hyperlink #2 = the color green.
 

thirdkind

Senior member
Oct 9, 1999
954
0
0
If you're talking about the HTML involved, you could use the <body> tag to define the default color for hyperlinks, and then use inline styles to change the color of any links you'd like to be different.

This will make all links default to a certain color:

<body link=&quot;#336699&quot;>

Then, use styles to make certain links a different color:

<a href=&quot;http://www.whatever.com/&quot; style=&quot;color : 000066&quot;>Click here.</a>

Hope that's what you were looking for.