Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Multiple menus on the same page

Home Forums Older releases 1.0.x Multiple menus on the same page

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #3423
    robii1
    Participant

    I’m updating my menu from v0.9 to v1.0 but have run into a problem. With v0.9 it was possible to have two menus on the same page using something like this:

    $(function() {
    $(‘#main-menu-1’).smartmenus({
    subMenusSubOffsetX: 1,
    subMenusSubOffsetY: -8
    });
    $(‘#main-menu-2’).smartmenus({
    subMenusSubOffsetX: 1,
    subMenusSubOffsetY: -8,
    // you might want this option for the sub menus of the right menu
    rightToLeftSubMenus: true
    });
    });

    <ul id=”main-menu-1″ class=”sm sm-blue”>

    <ul id=”main-menu-2″ class=”sm sm-blue”>

    (http://www.smartmenus.org/forums/topic/multiple-instances-of-smartmenus-that-are-separated-on-the-page/)

    This works fine for v1.0 in desktop view, but it seems to cause a conflict between the two menus in mobile view (one menu is always open/toggled and submenus cannot be opened by clicking on the + button)

    Does anybody know of a way to get both menus working on mobile?

    Thanks

    #3424
    admin
    Keymaster

    This shouldn’t be a problem so I guess there is something wrong on your page that causes the issue (maybe a JS error or some custom CSS that conflicts with the menu styles). If you like, please post some kind of the demo URL and I will check it.

    #3427
    robii1
    Participant

    You were correct. I started again and it’s working as expected now 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘1.0.x’ is closed to new topics and replies.