Sorry, I haven't time to wade through entire stylesheets tonight, but assuming that your stylesheets don't do anything 'clever' with table definitions, it looks as if your divs are wrapped by <table></table> tags which AFAIK would follow each other in the HTML 'flow', so each table will appear below the last regardless of the fact that you have no <TR>s and <TD>s defined. This would invalidate your 'box model' flow styling.
I suggest dumping all <TABLE> definitions unless you are truly using a table def for a "real" table, and use CSS to do all of your placement. Regards, Alan. www.theatreorgans.co.uk www.virtualtheatreorgans.com Admin: Conn Artistes, UKShopsmiths, 2nd Touch & AP Groups Shopsmith 520 & bits Flatulus Antiquitus ----- Original Message ----- From: Andrew Doades To: Alan K Baker Cc: [email protected] Sent: Thursday, April 03, 2008 10:34 PM Subject: Re: [css-d] FF and IE problems In my css file: #sidebar { float:left; width:165px; border: 3px solid #aaa; background-color: #eee; margin:2px; padding: 1em; } #content-main { float:none; width:100%; } then in my template I just put that links and that in a <div id="sidebar"> and a content-main one for content ______________________________________________________________________ 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/
