Home › Forums › CSS › Wonky Sub-Sub Menus in IE7 › Re: Wonky Sub-Sub Menus in IE7
February 18, 2013 at 1:52 pm
#125122
Member
I think I might have found the issue. According to IE’s developer tools every list item in the dropdown menus has `float: left` applied to it. That would explain why they are displaying inline and not going full width. To overcome this, you might just have to use a very specific selector and set:
ul#main-nav li { float: none; }
Hope this helps. I’d be interested to know the outcome (I have no way of testing my theory).