• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

HYPER;INK COLOR CHANGE

Ted1

Senior member
How can I get my hyperlinks to be different colors than on another. EG: Hyperlink#1 = the color blue - Hyperlink #2 = the color green.
 
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.
 
Back
Top