MyBB Community Forums

Full Version: How to change the color of theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: themev.jpg]

all the white background and the number of posts.

thanks
To change the background of the theme go to:
Admin CP > Templates & Styles > Themes > THE THEME > global.css
and click Edit Stylesheet: Advanced Mode and find body ( IT MUST BE THE FIRST ) and change
background: #e2e2d9 url(images/v4ajdijacom/background.png) repeat-x center top;
#e2e2d9 is the background color change it with the color you want!

To change the posts color go to:
Admin CP > Templates & Styles > Themes > THE THEME > global.css
and click Edit Stylesheet: Advanced Mode and find
.largetext {
	font-size: 16px;
	font-weight: bold;
}
if you want the text color blue replace this:
.largetext {
	font-size: 16px;
	font-weight: bold;
}
with this:
.largetext {
        color: #026CB1;
	font-size: 16px;
	font-weight: bold;
}

To change the background color to black go to:
Admin CP > Templates & Styles > Themes > THE THEME > global.css
and click Edit Stylesheet: Advanced Mode and find this code
.trow1 {
	background: #fff;
}
.trow2 {
	background: #fff;
}
and replace with this:
.trow1 {
	background: #000;
}
.trow2 {
	background: #000;
}

NOTE : IF YOU CHANGE THE COLORS LIKE THIS YOU WILL NEED TO CHANGE AND OTHER!
thank you very much now i need to change this 2 and it is all ready

you can see in the screen right down

[Image: themev.jpg]