Hi there,

I stayed with web2py 1.79 for quite some time, and am now keeping up
with 1.92, oh, and latest 1.93. Lots of improvements. Wow.

One minor, minor problem so far. When I try to use the new superfish
menu system to produce a vertical menu, I found the menu can show up
BUT, the first level of sub-menu fully overlaps with the main menu.
That is not the same effect as in superfish official website
http://users.tpg.com.au/j_birch/plugins/superfish/#sample3

I examined 3 superfish css files but did not find any suspect. Anyone
who is interested to investigate please put following code into your
controller to see it in action. Thanks in advance!

Regards,
Iceberg Luo

def test():
    response.files.append(URL(request.application,'static','css/
superfish-vertical.css'))
    return {'':MENU(
        [
            (T('Item 1'), False, URL('default','test/1'), [
                (T('Item 1-1'), False, URL('default','test/11'), []),
                (T('Item 1-2'), False, URL('default','test/12'), []),
                (T('Item 1-3'), False, URL('default','test/13'), []),
                ]),
            (T('Item 2'), False, URL('default','test/2'), []),
            (T('Item 3'), False, URL('default','test/3'), []),
        ],
        _class='sf-menu sf-vertical')}

Reply via email to