[Resolved] Menu Toggle appearing over the logo at center in mobile-view

Home Forums Support [Resolved] Menu Toggle appearing over the logo at center in mobile-view

Home Forums Support Menu Toggle appearing over the logo at center in mobile-view

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #2330240
    Md Ashfak Faysal

    I used this code as suggested by one of the support staff here. It worked totally fine but now the menu toggle at mobile view has shifted to the middle over the logo. Could you please help me with this?

    The Site link: https://lessonery.com/

    The Issue Image: https://imgur.com/a/u0eji14

    @media(max-width: 768px) {
        .site-logo {
            position: absolute;
            left: 50%;
            top: 15px;
            transform: translateX(-50%);
            z-index: 1000;
        }
        .has-inline-mobile-toggle .mobile-menu-control-wrapper {
            flex-direction: row-reverse;
            flex: 1;
        }
        button.menu-toggle {
            flex-grow: 0;
            margin-right: auto;
        }
    }
    #2330303
    David
    Staff
    Customer Support

    Hi there,

    try this CSS:

    
    @media(max-width: 768px) {
        .site-logo {
            position: absolute;
            left: 50%;
            top: 15px;
            transform: translateX(-50%);
            z-index: 1000;
        }
        .has-inline-mobile-toggle .mobile-menu-control-wrapper {
            flex-direction: row-reverse;
            flex: 1;
        }
        button.menu-toggle {
            flex-grow: 0 !important;
            margin-right: auto;
        }
    }
    #2330427
    Md Ashfak Faysal

    Thanks

    #2330466
    David
    Staff
    Customer Support

    You’re welcome

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