• This topic has 5 replies, 2 voices, and was last updated 4 years ago by vako.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #47472
    postfromparadisegmail -com
    Participant
    Premium Member

    Hi,

    I would like to adjust the menu of the mobile version of my website. I would like to:
    – Remove the main menu arrow in the mobile version
    – Add the side bar alt only in the mobile version. So I don’t want it to be visible in the desktop version of the website.

    Is this possible?

    Kind regards.

    #47481
    vako
    Keymaster
    WP Royal Team

    Hi @postfromparadisegmail -com

     

    Please share your website URL and we will check for the possible solutions.

     

    Kind Regards

    #47486
    postfromparadisegmail -com
    Participant
    Premium Member
    #47494
    vako
    Keymaster
    WP Royal Team

    Hi @postfromparadisegmail -com

     

    Please navigate to Dashboard > Appearance > Customize > Additional CSS and insert the CSS snippet below:

    .mobile-menu-btn {
    display: none;
    }
    .main-nav-sidebar {
    display: none;
    }
    @media screen and (max-width: 979px) {
    .main-nav-sidebar {
    display: block;
    }
    }

     

    Kind Regards

    #47502
    postfromparadisegmail -com
    Participant
    Premium Member

    Tank you so much!!

    I’ve another question, if you don’t mind.
    On the mobile version our logo is very small. On the desktop version it’s perfect.

    Is there a way to fix this?

    Kind regards.

    #47511
    vako
    Keymaster
    WP Royal Team

    Hi @postfromparadisegmail -com

     

    Please navigate to Dashboard > Appearance > Customize > Aditional CSS and following snippet:

    @media screen and (max-width: 880px) {
    .logo-img {
    max-width: 580px !important;
    }
    }

     

    Kind Regards

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