Stephen Karsch wrote:
> ok, i'm sort of ashamed to call myself a web developer but i can't 
> figure this one out...

Ok :-) but if that's the criteria, then none of use can use the
working-title of 'web developer' ;-)

> http://www.webcre8ive.com/
> 
> on IE6 the body background SOMETIMES disappears...on some pages i can
>  load it up and it looks fine, but then i reload and some of the 
> content background is missing...
> 
> any ideas?

IE needs its 'hasLayout'[1] trigger.

Adding...
.content {width: 100%;}
...will do just fine in that layout.

Additional comments:

You don't have a 'body background', and those rounded areas are
designed to go with a white 'body background'. My 'body background
default' is gray ATM, so it doesn't look too good.

Adding...
body {background: #fff;}
...will make the result more reliable.

---

You have triggered the 'em font-resizing bug' in IE.
<http://www.gunlaug.no/contents/wd_additions_13.html>

Adding...
html {font-size: 100%;}
...will fix that - and also keep your hidden nav-text from becoming visible.

---

Line-up of nav tabs doesn't look good in my Opera 9/win2K. You better
have a look at that.


regards
        Georg

[1]http://www.satzansatz.de/cssd/onhavinglayout.html
-- 
http://www.gunlaug.no
______________________________________________________________________
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/

Reply via email to