MyBB Community Forums

Full Version: Quote look
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do i change how the quote box looks? For example:

http://dev-network.com/showthread.php?ti...357#pid357

The quote has no table around it like on other themes Confused
strange... thought I included it with the css file, add this to the end of global.css, this should resolve it.

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