On Sep 18, 2007, at 5:35 AM, 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. However, look at a site like
> http://www.positioniseverything.net/ and do the same thing, the text
> overflows and is still visible over the background. It seems that the
> div in http://www.positioniseverything.net/ is wrapped in another div
> with an absolute position, I've tried this but still cannot get it to
> work. Can anyone enlighten me on this please?

The container/wrapper on http://www.ratking.co.uk hides/crops the  
text that overflows because
#container {
        ...
        overflow: hidden
}
You are doing that probably to force that container to contain  
floated blocks.
A better method would be to either:
1. insert a clearing element at the bottom of that wrapper
or
2. use the easy clearing method, as described on PIE
<http://www.positioniseverything.net/easyclearing.html>

and remove that overflow:hidden.

Philippe
---
Philippe Wittenbergh
<http://emps.l-c-n.com>




______________________________________________________________________
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