MyBB Community Forums

Full Version: Making hyperlinks in post have a different color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
All the hyperlinks on my forum are blue, including in post. I also have the post font set at the same color as the hyperlinks which makes it difficult to locate a hyperlink in a thread.

What mod can I add that will allow the hyperlinks to be a different color in the post only ?
Still looking for a way to accomplish this....
anybody ?
The simplest way (assuming you have basic CSS knowledge) would probably be to go into the templates and under Post Bit Templates edit that first one (postbit), the first TD should have something like...
<td class="{$altbg}">
Try changing the class to a different name, then in the skin(s) in extra CSS add that class name, put in what you need for the post it's self then to change the link colours put in something like the following
.yourclass a.link{color: (your color code here);}
.yourclass a.visited{color: (your color code here);}
.yourclass a.hover{color: (your color code here);}
Hopefully that helps ya ^^