Page is here
Please enlighten me on how to fix this…
I know Dean Edwards’ IE7 javascript, but it might be overkill, is there a simple fix just for my problem?
I tried:
<!--[if lte IE 7]>
<link rel="stylesheet" type="text/css" href="demo/css/ie6.css" media="all">
<![else]>
<link rel="stylesheet" type="text/css" href="demo/css/common.css" media="all">
<![endif]-->
But it doesn’t work, so i replaced it with:
<!--[if lte IE 7]>
<style type="text/css">
...
</style>
<![endif]-->
Currently I’m still having problems with the second level menu, i.e. here
@Miranda: To fix your menu in IE6, update the following rules in your CSS like so —
I suggest you use conditional-comments for IE6 if you start to notice that any styles you update/define to make the page work for it start to negatively affect it in other browsers. Create a
ie6.cssfile and use the conditional-comment below your main CSS file like this: