MyBB Community Forums

Full Version: Logo background image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey!

How do I add background image behind my logo like on those forums:

1. http://marketforums.org/
2. http://www.hackforums.net/

My forum: http://faillounge.com/
As you can see, I just have gray color as the background, how do I add a custom image?
Go to: ACP > Themes > Your theme > Edit > global.css > edit in advanced mode > and find;
#container {
	background: #FFFFFF;
	width: 95%;
	color: #000000;
	border: 1px solid #e4e4e4;
	margin: auto auto;
	padding: 20px;
	text-align: left;
}
and change background: attribute something like this;
background: #FFFFFF url(http://i36.servimg.com/u/f36/15/36/47/26/fmbg13.jpg);

Change #FFFFFF to whatever your "container" color is. Wink
1. Go to Admin CP > Templates & Style > Themes > Your Theme > global.css > Advanced Mode.

2. Find:

#container {
	background: #272727;
	width: 95%;
	color: #f6f6f6;
	border: 1px solid #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left;
}

3. Replace with:

#container {
	background: #272727 url(images/bg.gif) top center repeat-x;
	width: 95%;
	color: #f6f6f6;
	border: 1px solid #000000;
	margin: auto auto;
	padding: 20px;
	text-align: left;
}

3. Change images/bg.gif to the path of your image (to be repeated in the x axis).