MyBB Community Forums

Full Version: Different background image
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to use a different background image. I'm currently using the Red Eclipse theme which is all nice except rather than the black with lines I'd like a custom one where it is just one big image that I want to have made.

Currently its just a repeating smaller image to make up the background.

I hope I'm explaining what I desire correctly. Any assistance would be great.

Thanks!
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