MyBB Community Forums

Full Version: change forum backgroung color
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to change forum back ground color.

[Image: 2du077d.jpg]

i wana change white backgroung to other.
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

#container {
	width: 95%;
	background: #fff;
	border: 1px solid #e4e4e4;
	color: #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left; /* IE 5 fix */
}

3. Change #fff to the color you want (e.g. #000 for black, #ff0000 for red).
thanks, its working.

please tell me how to change this color


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

2. Find:

.trow2 {
	background: #EFEFEF;
}

3. Change #EFEFEF to the color you want (e.g. #000 for black, #ff0000 for red).
i do as you say.

it works good.

now tell me please again that how to do this shown in pic

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

2. Find:

.tcat {
	background: #ADCBE7;
	color: #000000;
	font-size: 12px;
}

3. Change #ADCBE7 to the color you want (e.g. #000 for black, #ff0000 for red).

4. Next, find:

a:link {
	color: #026CB1;
	text-decoration: none;
}

a:visited {
	color: #026CB1;
	text-decoration: none;
}

a:hover, a:active {
	color: #000;
	text-decoration: underline;
}

5. Change #026CB1 and #000 to the colors you want (e.g. #000 for black, #ff0000 for red).
thanks a lot
You're welcome. Wink