Just look at it in IE7 and then look at it in FF or IE6.
http://metalloween.be/index.php?page=upcoming-events
I have no ide why this is but it's not stretching out the background.
Site acting funny in IE7
Re: Site acting funny in IE7
check out your CSS file:
#main { background: url(uploads/images/bg.jpg) no-repeat top; height: 353px; margin: 0; padding: 0 }
so IE7 does what it's told to do - draw the #main div with 353 height. Try to use min-height: 353px instead of height: 353px. Plus, do something with no-repeat, or else the background will be shown only once, no matter how long page will be.
#main { background: url(uploads/images/bg.jpg) no-repeat top; height: 353px; margin: 0; padding: 0 }
so IE7 does what it's told to do - draw the #main div with 353 height. Try to use min-height: 353px instead of height: 353px. Plus, do something with no-repeat, or else the background will be shown only once, no matter how long page will be.
Re: Site acting funny in IE7
So somebody messed with this css because that wasn't written that way in the original file! Thanx for noticing.kazkas wrote: check out your CSS file:
#main { background: url(uploads/images/bg.jpg) no-repeat top; height: 353px; margin: 0; padding: 0 }
so IE7 does what it's told to do - draw the #main div with 353 height. Try to use min-height: 353px instead of height: 353px. Plus, do something with no-repeat, or else the background will be shown only once, no matter how long page will be.