MyBB Community Forums

Full Version: Change shaded background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
In my forum i have b-board theme i want to change their shaded forum background like
[Image: b02be70479ee46048bc9bbcc05b98b44.png]
1 forum have white bg but another is shaded so how to make everyforum bg color white
Thanks in advance
I would expect there be some Javascript within the theme you are using which causes this. You can try to find this Javascript and either replace the color codes within them (pointless), or remove it completely.

Can we have a URL for reference?
Find

.trow1 {
	background: #F5F5FF;
	padding: 6px;
}

.trow2 {
	background: #E1E4F2;
	padding: 6px;
}

in your global.css and replacing it with either 1 of the 2 below.

.trow1 {
	background: #E1E4F2;
	padding: 6px;
}

.trow2 {
	background: #E1E4F2;
	padding: 6px;
}

.trow1 {
	background: #F5F5FF;
	padding: 6px;
}

.trow2 {
	background: #F5F5FF;
	padding: 6px;
}
^ that helped bro thanks +rep