Home Forums Free Themes Restaurantz Disable mobile menu

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #42712
    Joseph
    Participant

    Hey there!

    I would like to disable the special menu for the mobile version. I want the classic menu on mobile too. How can I do that?

    Thanks!

    #42714
    wensolutions
    Keymaster

    Hello @joseph,

    To have the classic menu in your mobile version use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    @media only screen and (max-width: 800px){
    #mobile-trigger {
        display: none;
    }
    #main-nav {
        display: block;
    }
    }

    But if you have the longer menu then the it wont look good. So if you provide your site URL it would be easier to provide the specific solution .

    Hope this helps.

    Best Regards!!

    #42715
    Joseph
    Participant

    Thanks. I have a short menu so it looks good. However, after switching the menus I have a white space instead of the black one which had the yellow button to open the menu. How can I remove that white space?

    #42716
    wensolutions
    Keymaster

    Hello @joseph,

    While we have tested implementing the CSS we have provided we don not find such issue so please post your site URL and screen shot of the issue .

    Hope you understand .

    Best Regards!!

    #42717
    Joseph
    Participant

    The site is here.

    #42718
    wensolutions
    Keymaster

    Hello @joseph,

    Please add below given CSS in Admin Panel > Appearance > Customize > Additional CSS .

    @media only screen and (max-width: 800px){
    #page {
        padding-top: 0px;
    }
    }

    Hope this helps.

    Best Regards!!

    #42719
    Joseph
    Participant

    Thank your for your help. All is fixed now.

    #42722
    wensolutions
    Keymaster

    Hello @joseph,

    Glad we could help you .

    If you have any issue further , please let us know.

    Best Regards!!

    #42728
    Joseph
    Participant

    One more question. Is it possible to center the menu for mobile? I did not find a way to center it. Or maybe make it to use two lines instead of one?

    Something like..

    Home Restaurant
    Lieferungen Contact us

    ..but centered.

    #42747
    wensolutions
    Keymaster

    Hello @joseph,

    To center the menu in mobile view use below given CSS:

    @media (max-width:800px){
    #main-nav {
        float: none;
        max-width: 100%;
        margin: 0 auto;
    }
    .main-navigation ul {
        display: inline-block;
        margin: 0 auto;
    }
    }

    Hope this helps.

    Best Regards!!

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