[Resolved] Include Menu Items for Mobile when Secondary Menu is Hidden

Home Forums Support [Resolved] Include Menu Items for Mobile when Secondary Menu is Hidden

Home Forums Support Include Menu Items for Mobile when Secondary Menu is Hidden

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1282794
    Martin

    Hi there.
    I have created my main menu and a secondary menu which includes the Lightweight Social Icons and a couple of menu items. In order to hide the secondary menu on mobile I have added CSS to do that. However, the link that is in the secondary menu and the social icons are still needed to appear somewhere.

    I was thinking of adding them to the main menu to appear for mobile only. Is this feasible or is there another way that is better?

    Thank you.

    Martin

    #1282961
    Leo
    Staff
    Customer Support

    Hi there,

    Since you are using the off canvas panel on mobile, you can create a new menu which includes all the menu items from primary and secondary and assign it to the off canvas panel.

    Then use the widget area to insert the social icons:
    https://docs.generatepress.com/article/off-canvas-panel-overview/#off-canvas-panel-widget-area

    #1282991
    Martin

    I tried that but I want the main menu in the Off Canvas menu and would rather like to avoid having two menus to manage.

    Obviously if there’s no alternative I will have to do so but ideally I would like to simply append the extra few items to the main menu on mobile (off canvas) only.

    Thanks.

    Martin

    #1283142
    Martin

    Found a solution:

    /* Hide element on Desktop */

    @media
    only screen and (min-width: 981px) {
    .hide-on-desktop {
    display: none !important;
    }
    }

    /* Hide element on Tablet/Phone */

    @media
    only screen and (max-width: 980px) {
    .hide-on-mobile-tablet {
    display: none !important;
    }
    }

    #1283261
    Leo
    Staff
    Customer Support

    Glad you found a solution!

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.