MyBB Community Forums

Full Version: Link color in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I'm pretty new to myBB and hosting a forum in general.
I was wondering how I could change the color of links (unvisited, unhighlighted,..) in posts on the forum. I found where link colors are defined in the template, but that just changes all links over the entire site.
What I'm looking for is specifically changing the color of only posted links (with [url=etc.)
Is there somethig more specific I can edit, do I use mycode,...?

Any help is most appreciated!

Kind regards!
Add to your global.css:

.post_body a {
	color: #000;
}

.post_body a:hover {
	color: #000;
}
Thank you, I could've been searching for ages Smile
I know this is quite an old thread but just wanted to say I have been searching for ages for a solution and everyone seems to say you cant do it but the above worked perfectly so thank you very much Tecca
No problem!