I have a header-container with a background image, like so:
#header-container { background:url(../img/bg.jpg) repeat-x 0 0px; margin:0px auto; width:100%; te
Try using an :after pseudo element with your image in it.
#header-container:after { content: ""; background:url(../img/bg.jpg) repeat-x 0 0px; width: 9999px; position: absolute; }
Or something like that.