MyBB Community Forums

Full Version: Quote Background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi everyone!

I've changed the layout of my MyBB and now I want to change the look of the quote box in the entries.

Is someone out there who could help me?
Thanks in advance.

Nicky
Got to Themes and choose the theme and click Go and below at Additional CSS there you find the code for quote to edit it, here something like this....

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

if not just copy the above code and change the setting which you want.
Thank you so much! Wink It works fine.