MyBB Community Forums

Full Version: How to change the color of a quote box?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I would like to change the background color of a quote box. I've looked at css and the color is in there but I can't change it in the admin panel.

Do I have to change this directly in the database or is there something I have missed?
Login to your Admin CP

Themes -> Modify/Delete -> MyBB Master Style -> Edit -> Additional CSS

Search for
.quote_header {
	background: #fff;
	border: 1px dashed #000;
	border-bottom: 0;
	color: #000;
	font-weight: bold;
	margin: 8px auto 0 auto;
	padding: 4px;
}

.quote_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
}
}
Change it accordingly to what you want Wink
I found it.

Thanks for the reply.
and here you can visit the css guide
http://www.htmlhelp.com/reference/css/