MyBB Community Forums

Full Version: Have A Unique Colour For Links Included In A Post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Folks

Is it possible for links included in a post to be a different colour to the other links in myBB?

If so - how would I do it?

Cheers

Bugsley

http://www.utd111.com/forum
You want one color for all links (within post) or different colors for different links (within post) ?
Try this:
.post_body a:visited, .tcat a:link a:hover, .tcat a:active {
        color: #your colour code;
	text-decoration: none;
}
(2012-06-19, 02:30 PM)Yaldaram Wrote: [ -> ]You want one color for all links (within post) or different colors for different links (within post) ?

Hi

I just need one colour for all links that appear within a post - but a different colour from the other links on the forum Blush
Add the following code in your theme's global.css;
.post_body a:link, .post_body a:active, .post_body a:visited, .post_body a:hover{
color: #FF0000; /* Red color */
}
(2012-06-19, 04:16 PM)Yaldaram Wrote: [ -> ]Add the following code in your theme's global.css;
.post_body a:link, .post_body a:active, .post_body a:visited, .post_body a:hover{
color: #FF0000; /* Red color */
}

You've done it again Yaldaram [Image: notworthy.gif]

Thanks Mate!

Rep on its way Big Grin