You're absolutely right..Apologies I missed that..
Luckily the fix is in two lines (Updated the Package)
The very corrupted layout is caused by nested floats (especially float:right), actually there's an upcoming tutorial about this..So a quick fix is by adding a width:100% (or any width.. like in the vertical one, it's set to the width of the items) to the ul.sf-menu menu
IE6 Issuex Fixed
You're absolutely right..Apologies I missed that..
Luckily the fix is in two lines (Updated the Package)
The very corrupted layout is caused by nested floats (especially float:right), actually there's an upcoming tutorial about this..So a quick fix is by adding a width:100% (or any width.. like in the vertical one, it's set to the width of the items) to the
ul.sf-menumenu.sf-menu{ width:100%;}.sf-menu.sf-vertical {width:10em;}
And the other issue is the allergy IE6 has to the relative positioning in RTL..so a quick fix is by adding:
.sf-menu li a {position:static;}Thanks for the notice.