views:

634

answers:

2
A: 

You could try something with CSS to make the subitems always visible. When hovering, the current item gets the class 'sfHover'.

Perhaphs you can add a CSS style to your site something like this:

li.sub.sfHover ul {
  display: block !important;
  visibility: visible !important;
}

I'm not quite sure about the CSS selector to make it only work for sub-sub items, but I hope this gets you on your way.

ylebre
A: 

I was searching for that too. This works but it's not very clean is it? It would be nice if you could determine how many levels superfish actually has to collapse.

Simon