[Support request] hide menu on mobile

Home Forums Support [Support request] hide menu on mobile

Home Forums Support hide menu on mobile

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • #927078
    Femke

    Also, the background of the header on mobile should be white and the hamburger menu should be bigger. I can’t find how to do this. Do I also need custom css for this?

    #927105
    David
    Staff
    Customer Support

    This should do it, i added the color change as well:

    @media (max-width: 768px) {
        #masthead {
            display: block !important;
            opacity: 1;
        }
        .inside-header .site-logo {
            display: none;
        }
        .inside-header.grid-container {
            padding-bottom: 0;
        }
        .header-widget {
            margin-bottom: 0 !important;
            font-size: 0;
        }
        .main-navigation.mobile-header-navigation {
            background-color: #fff;
        }
    }
    #927127
    Femke

    perfect, thanks a lot!

    #927143
    David
    Staff
    Customer Support

    Glad to be of help.

Viewing 4 posts - 16 through 19 (of 19 total)
  • You must be logged in to reply to this topic.