MyBB Community Forums

Full Version: Repeating Background?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey,

So I'm trying to customize my forum to make the background this: http://schoolitall.ca/images/bgf.jpg repeating over the page to create a nice gradient look.

I have changed the global css to say this:
body {
       	background-image: url(http://schoolitall.ca/images/bgf.jpg);
	background-repeat: repeat-x;
	background: #63a7e6;
	color: #000;
	font-family: Tahoma;
	font-size: 13px;
	text-align: center; /* IE 5 fix */
	line-height: 1.4;
}

But as you can see, my forum only shows the background color specified, and not the image. ( http://schoolitall.ca/forum/ ) Why is this?
Oops, can somebody delete this thread? I got an error trying, I actually figured out how to do this. Smile
just use the code

background-image: url(images/bgf.jpg) top left repeat-x;

this will solve ur problem