Son of Suckerfish sticking menus in ie7
I had an annoying sticking menu problem in ie7 with son of suckerfish. I made a fix by replaceing:
#nav li:hover ul, #nav li.sfhover ul {
left: auto;
}
with
/*hack for ie7 to not have menus stick*/
html>/**/body #nav li:hover ul{
left: auto;
}#nav li.sfhover ul {
left: auto;
}
Hopefully, this helps someone.
