Superfish sub menu above menu

221 Views Asked by At

I have a working superfish navbar, but I would like the sub menu to popup and not down because of my theme requires it. The superfish navbar example can be seen here.

1

There are 1 best solutions below

0
On

I've looked through the css code and if you change top:100% to bottom:100% in the .sf-menu ul section then it will work.

.sf-menu ul {
    bottom:100%;
    display:none;
    left:0;
    position:absolute;
    z-index:99;
}