MyBB Community Forums

Full Version: Color of quote
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to change the background color of quoted text. How do I do it ?

TIA Smile
Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

Find:

blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
}

And edit the background property.
^Thank you Smile