MyBB Community Forums

Full Version: Background won't repeat in other pages than index.php
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2010-08-02, 08:32 AM)NeoFusion720 Wrote: [ -> ]Container.
background-repeat: repeat; did not work.

Go to : yoursite.com/images/elitev2/bg.png

And see it the image shows.
Yes it does.
Ok it should work but try this if not i have no idea.

background: #000000 url(images/elitev2/bg.png) 0 0 repeat;
If you want it to repeat fully (repeat-x and repeat-y) try not putting anything in for the value.
background: #000000 url(images/elitev2/bg.png);

I took out the background-position values too because they aren't necessary in this situation.
Do you have the code in global.css?
Does the background need to be repeated in #container only or on the overall page (like on this forum)? If on overall page, put that code to body code (don't know how to express myself) like:

body {
background: #000000 url(images/elitev2/bg.png);
}
Only in the container.
Pages: 1 2