MyBB Community Forums

Full Version: Quote Boxes?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there any way to change the color of the quote boxes by editing the templates/theme?
In global.css:

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

blockquote cite {
	font-weight: bold;
	border-bottom: 1px solid #ccc;
	font-style: normal;
	display: block;
	margin: 4px 0;
}

blockquote cite span {
	float: right;
	font-weight: normal;
}


blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}
Thank you, Matt.