MyBB Community Forums

Full Version: Change this background's color?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello! 
Please tell me how can i change this background's color! 
It will be necessary to change the color of the texts that are above that backgrounds too, so please help me also regarding them!

1. https://ibb.co/tDDHx41
2. https://ibb.co/wNw42ZZ
3. https://ibb.co/K9ZqBLS
You can change it in APC >> themes >> default (if you use default theme) >> global.css. Look for

.trow1 {
	background: #f5f5f5;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.trow2 {
	background: #efefef;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

trow1 is the first row, trow2 the second row, and the third row is....trow1 again. Fourth row is trow2 again.  And so on. For example: i set trow1 to green and trow2 to yellow. 

.trow1 {
	background: green;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}

.trow2 {
	background: yellow;
	border: 1px solid;
	border-color: #fff #ddd #ddd #fff;
}


And that then looks like this

[attachment=46685]
Thanks for that!