MyBB Community Forums

Full Version: Link Color change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello Guys,

How can I change the color ONLY for the links in threads & posts?

Thanks for the help!
(2013-02-24, 10:37 PM)Niggidea Wrote: [ -> ]Hello Guys,

How can I change the color ONLY for the links in threads & posts?

Thanks for the help!

Change these in your global.css

a:link {
	color: #AAAAAA;
	text-decoration: none;
}

a:visited {
	color: #AAAAAA;
	text-decoration: none;
}

a:hover, a:active {
	color: #AAAAAA;
	text-decoration: underline;
}
Umm that will change the link color everywhere.

You need:

.post_body a:link
.post_body a:visited
.post_body a:active
.post_body a:hover