I'm trying to get my background image to repeat x and y and go to the left, right, and bottom of the screen regardless of what screen res someone uses.
Right now there is a gap I can't fix.
I can use -20px left and right margins to make it look right on my screen res but that doesn't work at the bottom of the page and larger screen res's still have a gap. Plus this makes small screen res's have a scroll bar.
How do I make the background image repeat off the page regardless of screen res?
here is a link to my site
http://www.pgzz.gamerunion.com
here is the css code in question.
QUOTE
#container{
background: url(images/bodybackground.jpg) repeat;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
padding-left: 0px;
padding-right: 0px;
padding-bottom: 0px;
margin: 0%;
}
I've tried everything I can think of.
Thanks for the help.
edit solved