MyBB Community Forums

Full Version: Quote Box Style
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I change the style of how it looks when someone quotes another persons message?

I've tried looking in the css files and I couldn't find anything that looked like it was for the quote box.

I want to change the background color and the border style to solid instead of dashed.

Thanks in advance.
You should find this code in your Additional CSS
.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;
}