MyBB Community Forums

Full Version: How to make a BG not move or repeat
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I make it so my forum BG does not repeat and doesn't not scroll when a user scrolls down?
The css is either "static" so it doesn't move. Or it's "no-repeat" if you don't want it to repeat.

You can combine for like "top left static no-repeat".

I'm pretty sure it's static anyways.
in global.css

body {
	background-image: url(<full url to your image>);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right top;
}

set the URL and position
Or in shorthand CSS:
body {
	background: url(images/image.png) no-repeat fixed right top;
}