MyBB Community Forums

Full Version: Edit Quote Box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Site: www.vampirecounts.net

Hi,

I want to make some changes to the box that appears around quoted text.

Where can I edit that?

Many Thanks
Edi this CSS from global.css:

blockquote {
	background: #151515;
	border: 1px solid #525252;
	margin: 0;
	padding: 4px;
}

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

blockquote cite span {
	float: right;
	font-weight: normal;
}
Thanks Matt! Quick and helpful as always!