MyBB Community Forums

Full Version: how to fix its color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
hey look at my screenshot.it is a reply with quote.its background color is white.I want to change it. what I have to change in global.css ???


[Image: 11536865e7540db6b8246417156fa68b8b749ce9.jpg]
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #fff;
	padding: 4px;
}

3. Replace with:

blockquote {
	border: 1px solid #ccc;
	margin: 0;
	background: #222;
    color: #fff;
	padding: 4px;
}

4. Change #222 to another background color (e.g. #000 for black) and #fff for the text color (e.g. #ff0000 for red).