BJ wrote: > Page here (xhtml validates) > http://kickasswebdesign.com/wordpress/ > > CSS here: > http://kickasswebdesign.com/wordpress/wp-content/themes/kickass-squawk/style .css
> According to the mac screenshot generator IE Mac completely > blows apart my layout in a horribly spectacular manner- instead > of three columns side by side I apparently have stacking columns You have clear:both on your wrapper. IE5/Mac has a bug where this clear is inherited by its children, your floated columns, preventing them to act correctly. (This and many other IE5/Mac bugs are mentioned on Philippe's site [1].) Remove that clear and IE/Mac should work correctly. I think you don't need it (wrapper is preceded by a 100% wide float, so it will go "down" anyway), but I haven't checked too much. If you need it for some browsers, then just hide it from IE5/Mac. In IE5/Mac the columns will anyway drop when you make the window very narrow, because it doesn't support min-width (nor the js fix that you used for IE/Win), but that's probably not a big problem. >Secondly, I get an error from the w3 css validator that I just plain >don't understand, especially since the valid css repeats line 31 At line 31 of your html (not the CSS) you have "<input style="searchbox", obviously you meant "<input class="searchbox" This should probably also take care of the width of the input box. Hth, Bruno [1] <http://www.l-c-n.com/IE5tests/> ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
