MyBB Community Forums

Full Version: How change its color??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
look at the screenshot, when I wrap my links with [code] tags, its appears.
its background color is white. I want to change it.How can I???


[Image: 11370722371c72d5d7210ad2afe72d6d2fb9989e.jpg]
In global.css find;
.codeblock {
	background: #fff;
	border: 1px solid #ccc;
	padding: 4px;
}
and Change background color attribute.
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

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

3. Change the color of the background property (e.g. #000 for black).