My site works fine on the good browsers, and thanks to the help I've gotten on this list, it's nearly acceptable on IE.
I've recently cleaned-up my css by adopting conditional comments (a new trick for me) to feed additional rules to specific IE versions. It's worked very well with IE5, but IE 5.5 APPEARS to be ignoring it's stylesheet (I don't have a way to test IE except via the wonderful browsershots.org <http://browsershots.org>). Here's my conditional comments (html): <head> <link rel="stylesheet" href="../lib/styles.css" type="text/css" media="screen" /> <!--[if IE]> <link rel="stylesheet" href="../lib/iestyles.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 7]> <link rel="stylesheet" href="../lib/iestyles7.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 6]> <link rel="stylesheet" href="../lib/iestyles6.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 5.5]> <link rel="stylesheet" href="../lib/iestyles55.css" type="text/css" media="screen" /> <![endif]--> <!--[if IE 5]> <link rel="stylesheet" href="../lib/iestyles5.css" type="text/css" media="screen" /> <![endif]--> </head> *The problems*: 1) I can't get #hdrmenu ul to recognize it's margin-left 2) I can't get #tabs div to recognize it's margin-left (#2 is the important one, because it causes an important nav button to be hidden) The *page *is http://www.lighthouse.chtr.k12.ma.us/abt/cor_cc_test.php The *main stylesheet *is http://www.lighthouse.chtr.k12.ma.us/lib/styles.css My *problems can be seen* at http://browsershots.org/screenshots/aae9165404fa7b1a7d8cf5df8c0570da/ Many thanks for any help! ______________________________________________________________________ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d IE7 information -- http://css-discuss.incutio.com/?page=IE7 List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -- http://www.evolt.org/help_support_evolt/
