MyBB Community Forums

Full Version: How to use custom Quote Box style in Posts?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello.

I need a custom style quote box as shown in the attached picture.

Can anyone help me what code i need to modify in the template etc ?

[attachment=22494]
1. Admin CP > Templates & Styles > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

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

3. Replace with:

blockquote {
	border: 1px solid #ccc;
	border-left: 3px solid #ccc;
	margin: 0;
	margin-left: 15px;
	background: #fff;
	padding: 10px;
}

blockquote cite {
	font-weight: bold;
	font-style: normal;
	display: block;
	margin: 4px 0;
}
faviouz, You are great...Smile

Thanks for help