I've got a simple vertical Superfish menu (see example code below).
The twist is that I would like the children of the *bottom* menu item
to pop-out upwards.  The reason for the twist is because users are
complaining that they can't get to the children since they display off
the bottom of the screen.  Any suggestions?

Navigation Code
<ul id="nav" class="sf-menu sf-vertical">
        <li><a href="">top</a></li>
        <li><a href="">middle</a></li>
        <li class="last"><a href="">bottom</a>
                <ul>
                        <li><a href="">first</a></li>
                        <li><a href="">second</a></li>
                        <li><a href="">third</a></li>
                </ul>
        </li>
</ul>

What I'm looking for:
top              third
middle        second
bottom  =>  first

Reply via email to