MyBB Community Forums

Full Version: Quote and Code Box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello guys. I was looking for how to chance quote and code box but i couldn't find how to do it.

quote and code box that i have :

[Image: 333333333333333.png]


How i want :

[Image: 444444444444444444.png]
global.css > ctrl+f "quote" > edit each to how you like Smile
from default css
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;
}

blockquote cite span {
	float: right;
	font-weight: normal;
}

blockquote cite span.highlight {
	float: none;
	font-weight: bold;
	padding-bottom: 0;
}

.codeblock {
	background: #fff;
	border: 1px solid #ccc;
	padding: 4px;
}

.codeblock .title {
	border-bottom: 1px solid #ccc;
	font-weight: bold;
	margin: 4px 0;
}

.codeblock code {
	overflow: auto;
	height: auto;
	max-height: 200px;
	display: block;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 13px;
}