Ian Piper wrote: > If you look at this url > > http://www.tellura.co.uk/blueboar/ > > you should see that in all but IE6 the background image is > visible in the top half of the window. Interestingly, if I > give contentWrapper a border to see where it is located then > the image appears even in IE6 (but of course it now looks > ugly). > > Can anyone suggest what I am doing wrong here in my CSS file?
It's not you, it's IE. There's a couple of ways to make the background-image appear in the right place (if you give it repeat instead of no-repeat, you can see it's there, only in the wrong place): - a border-bottom (ugly) - a fixed height (may cause problems with other browsers) - a fixed width - zoom:1 IOW, the div needs to have 'layout' to get the background-image in the right place. -- Els http://locusmeus.com/ http://locusoptimus.com/ ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7b2 testing hub -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
