Forum Moderators: not2easy
Thanks in advance...
[edited by: encyclo at 7:56 pm (utc) on Dec. 12, 2006]
[edit reason] no personal URLs please, see forum charter [/edit]
On glancing over your CSS, it seems to be free from IE hacks, but you have a conditional comment that includes CSS for IE6... perhaps you simply need to modify this to include IE7 also ...?
<!--[if IE 6]>
<style>
#navlist a {height: 1em;}
</style>
<![endif]-->
Change to:
<!--[if gte IE 6]>
...
(gte - Greater Than or Equal to...)
In what way does your menu break in IE7? (I don't have it installed here)