Reply To: Right float Menu to mobile menu

Home Forums Support Right float Menu to mobile menu Reply To: Right float Menu to mobile menu

Home Forums Support Right float Menu to mobile menu Reply To: Right float Menu to mobile menu

#154129
Tom
Lead Developer
Lead Developer

Hi there,

You can initiate the mobile menu at your desired width with this CSS: https://gist.github.com/generatepress/c23aef2d05807c39bb32

Just change the 768px to whatever width you need it to initiate at.

To make the navigation appear below the logo on mobile, you can add this CSS:

@media (max-width: 768px) {
    .inside-header {
        display: flex;
        flex-flow: column;
    }
    .site-logo {
        order: 1;
    }
    .main-navigation {
        order: 2;
    }
}

There shouldn’t be any white space between menu items – can you link me to the site possibly?

Thanks!