Re: [css-d] IE6 float problem, again

2009-10-19 Thread Steve Caramia
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 ___

Re: [css-d] IE6 float problem, again

2009-10-15 Thread David Laakso
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

Re: [css-d] IE6 float problem, again

2009-10-15 Thread russ
> #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

[css-d] IE6 float problem, again

2009-10-15 Thread Steve Caramia
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