Kevin Stevens wrote:
> What is the magic formula here? I'm still playing around with my new 
> site, trying to test it to breaking point, and this is really bugging 
> me. When I increase the text size several times, on my site 
> (http://www.ratking.co.uk)it overflows the right hand div and gets lost 
> behind the body background image. 

That's the (sometimes) negative effect of...
#container{overflow: hidden; /* expand to contain content */}
...which in addition to "expanding the container", also "hides the 
horizontal overflow" since there's a fixed width on that element.

The way your layout is organized now means the 'overflow: hidden' isn't 
needed - no need to enforce "expansion of container", so you can delete 
that property/value and get the default: 'overflow: visible' back in all 
browsers.

regards
        Georg
-- 
http://www.gunlaug.no
______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to