Changing colour of links on "pages"

JVCode

Well-known member
Creating a link on a "page" changes the colour of the link to blue, I'd like for the link to keep the same colour as it was before (white), How do I do this just for the pages and not the other links in the forums etc.
 
I'm not sure I understand, is this for Page content?

If so, just create a new css class for links and set the color to white.
 
Well if you do this it will give you a red link for example:

Code:
<a href="http://xenforo.com" style="color: #CC0000">XenForo</a>


If you want to use a class then you can do something like this:

Code:
<style type="text/css">
a.green {color:#009900;}
</style>

<a class="green" href="http://xenforo.com">XenForo</a>
 
Top Bottom