MyBB Community Forums

Full Version: Don't move background
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to put a background in my forum, but I don't want it to move when I go down or up. I don't know how to explain this...

I just want the content to move, not the background.
Use the fixed CSS property. Like so:

body
{
	background: #fff url(images/bg.gif) fixed;
}
Hmm - I didn't know that all I needed for other stuff I code is 'fixed'...

It may not help me with my forum - but it is awesome to know!