[WSG] floats not wrapping

2008-02-14 Thread Taco Fleur
Hello, does anyone know how I can stop floats from wrapping (not sure if thats the right word for it). Best way to explain it is by going to the following page and resize the browser to something smaller than 800px http://www.clickfind.com.au/advertise-online.cfm Once you do that, the right

Re: [WSG] floats not wrapping

2008-02-14 Thread Karl Lurman
You need to work out a way of setting the minimum width of your containing div to ensure that it can never get any smaller than your smallest size. You might also want to consider setting the overflow to hidden for this parent container also, but this may mean your overflowed floated content will

Re: [WSG] floats not wrapping

2008-02-14 Thread Jixor - Stephen I
Taco Fleur wrote: Hello, does anyone know how I can stop floats from wrapping (not sure if thats the right word for it). Best way to explain it is by going to the following page and resize the browser to something smaller than 800px http://www.clickfind.com.au/advertise-online.cfm Once

Re: [WSG] floats not wrapping

2008-02-14 Thread Blake
Add a width to the containing element to 'brace' the page so that it can't shrink below the width of the container element. Make sure that width is wide enough to accomodate the floated layout as you want it. Regards, Blake On Fri, Feb 15, 2008 at 11:08 AM, Taco Fleur [EMAIL PROTECTED] wrote:

RE: [WSG] floats not wrapping

2008-02-14 Thread Taco Fleur
February 2008 10:31 AM To: wsg@webstandardsgroup.org Subject: Re: [WSG] floats not wrapping Add a width to the containing element to 'brace' the page so that it can't shrink below the width of the container element. Make sure that width is wide enough to accomodate the floated layout as you want