Okay
  Public Ticket #2434406
Different menu content in off-canvas menu
Closed

Comments

  • kadirb started the conversation

    Hello,

    I only use the Off-Canvas menu on mobile. Desktop also hide.

    I want to remove Top-Nav from the off-canvas menu while on mobile. I just want the menu I added to the off-canvas with the Widgets page to appear. How can I do it?

  •  2,979
    Andrew replied

    Hi kadirb,

    Try turning off the following in Salient > Header navigation > Off canvas menu/ Mobile menu

    6772812423.png


    Kind regards.

  • kadirb replied

    Hi Andrew,

    I tried, but noting any change

  •  2,979
    Andrew replied

    Hi kadirb,

    Try clearing browser and even check in browser incognito mode. Also share a link to your website.

    Thanks.

  •   kadirb replied privately
  •  2,979
    Andrew replied

    Hi kadirb,

    Use the following custom css to hide top menu on mobile:

    @media only screen and (max-width: 600px){
        .off-canvas-menu-container.mobile-only .menu {
        display: none;
    }
    }
    

    Kind regards.

  • kadirb replied

    Super. So how do I align at the top?

  •  2,979
    Andrew replied

    Hi kadirb,

    Try the following css:

    @media only screen and (max-width: 768px){
        #slide-out-widget-area.slide-out-from-right .inner-wrap {
        margin-top: -60px;
    }
    }
    

    Thanks.

  • kadirb replied

    Incredible! Thanks a lot.