Reply To: Changing length of floating navigation

Home Forums Support Changing length of floating navigation Reply To: Changing length of floating navigation

Home Forums Support Changing length of floating navigation Reply To: Changing length of floating navigation

#208174
Tom
Lead Developer
Lead Developer

I know I answered this at some point – finally found it: https://generatepress.com/forums/topic/logo-and-menu-float-left-problem/#post-172554

Do the above, then remove that margin top you added.

You would need to vertically align your logo as well, so your code would be:

.nav-float-right .main-navigation {
    float: none;
    display: inline-block;
    vertical-align: bottom;
}

.site-branding,
.site-logo {
    display: inline-block;
}

As well as the PHP code in the linked topic.

That should get you much closer 🙂