Thank you David and Russ!
Both solutions worked perfectly, though Russ's made a bit more logical
sense to my newbie head.
Steve
¿?¡!¿?¡!¿?¡!¿?¡!¿?¡!¿?¡!¿?¡!¿?¡!¿?¡!¿?
The World of Caramia Design
studio 510/525-4525
cell 415/806-6669
café caramiadesign.com
___
Steve Caramia wrote:
>
> I've tried all the fixes I could find (adding a margin of 0 to the
> left column, a haslayout comment --) and the middle cleared column
> still falls below the floated left column before it.
>
>
> http://www.caramiadesign.com/zen
> Steve
>
>
Add this to the sty
> #supportingText {
> float:none;
> margin:0px 190px 0 235px;
> width:375px;
> line-height: 2em;
> }
I was able to make it work in IE6 by removing the 190px right margin:
#supportingText {
float:none;
margin:0px 0px 0px 235px;
width:375px;
line-height: 2em;
}
It still looks right in Firefox. I d
I thought that I should submit an 800px version of the Zen page I
originally built in a 1000px width, but guess what? lteIE6 has a
problem that it DIDN'T have with the 1000px version!.
I've tried all the fixes I could find (adding a margin of 0 to the
left column, a haslayout comment --) and