MyBB Community Forums

Full Version: Quote box color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to alter the quote box background color?
Nice idea, I'd also like to see this happen if possible...?
Put this code in the Additional CSS of your theme, and modify it to your liking:

.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;
}

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

.code_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 12px;
}
Great! Thanks a lot. I just figured it out myself, and surprisingly, i did the same thing you did Big Grin

It's very comforting to know that there is so much knowledge to be found here Wink great work.

(would have posted this later on, but it was only a few minutes ago that I got it working).