MyBB Community Forums

Full Version: How do I change the font color when something is quoted?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I do not feel like looking through all of the options to find it. Anyone know how to change the font color of quoted text in threads?

Here it is: http://www.chicitybears.com/showthread.php?tid=64

White on White.
Go to ACP -> Templates & Style -> Themes -> Your Theme -> Global.css:

In Global.css, find this:
blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
}

And replace it with this:
blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
	color: black;
}

That's it :]