[Resolved] Mobile Menu Logo Shift

Home Forums Support [Resolved] Mobile Menu Logo Shift

Home Forums Support Mobile Menu Logo Shift

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1646363
    hin

    How do I go about in adjusting the CSS so that the logo doesn’t shift to the bottom whenever the mobile menu is open? Ideally, I prefer to have the mobile menu overlap the logo when it is open.

    Screenshot

    #1646413
    Elvin
    Staff
    Customer Support

    Hi there,

    You can try adding this CSS:

    @media(max-width:768px){
    nav#site-navigation {
        position: absolute;
        width: 100%;
    }
    header#masthead {
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.