MyBB Community Forums

Full Version: How To Change Design in Quoted Text? [Solved]
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Yo, lol.
Quick question:
How do I change the design of the quoted text in my theme? For example, do I go to ACP > Templates > etc. ?

For example, here, in this forums this is the quoted text's design:
Quote:this design.
but how would I change that blockquote box to make it like: green borders or green background, etc.

Smile
alter your themes global.css file look for block quote
ACP > Templates & Style > **your theme** > global.css > edit:

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;
}
Ahhh yeeah. :p
Thanks!