MyBB Community Forums

Full Version: CSS tags for...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello, I have been trying to figure out how to change the colors of the default mybb theme. I am having difficulties finding which CSS tags need to be changed.

for example, for the default my bb blue colored theme, what is the controls to change the dark blue category background and the light blue form background?


Thanks
Go to: http://yourdomain.com/admin/index.php?mo...e=advanced

Replace yourdomain.com with your own domain name and find;

For Dark Blue Category
.thead {
	background: #026CB1 url(images/thead_bg.gif) top left repeat-x;
	color: #ffffff;
}

For Light Blue Form (If you mean Textarea then)
textarea {
	background: #ffffff;
	color: #000000;
	border: 1px solid #0f5c8e;
	padding: 2px;
	font-family: Verdana, Arial, Sans-Serif;
	line-height: 1.4;
	font-size: 13px;
}

Or if you mean Subforum's Area;
.trow1 {
	background: #f5f5f5;
}

.trow2 {
	background: #EFEFEF;
}

Change color and background attributes. Smile