MyBB Community Forums

Full Version: Delete header Background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
i want to know how do i delete my forum page header white background i means header banner above white background
You mean Grey background color ?

Its .body class in global.css
It might help that you post your forum url if you are referencing colors used on your forum Smile
In global.css find;
body {
	background: #efefef;
	color: #000;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}
and Edit its background attribute Wink
(2011-06-09, 09:27 AM)Yaldaram Wrote: [ -> ]In global.css find;
body {
	background: #efefef;
	color: #000;
	font-family: Verdana, Arial, Sans-Serif;
	font-size: 13px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}
and Edit its background attribute Wink

please see my attachment
Then its #container class. In global.css search and edit its background attribute.
thanks again it's was padding issue

border: 1px solid #e4e4e4;
margin: auto auto;
padding: 0px; (it was 20 and i do 0)
text-align: left;
You want to edit its padding ? I thought you want to change its colors. Anyway, glad it has been solved.