Reply To: Split Top Menu into left and right section

Home Forums Support Split Top Menu into left and right section Reply To: Split Top Menu into left and right section

Home Forums Support Split Top Menu into left and right section Reply To: Split Top Menu into left and right section

#200423
Tom
Lead Developer
Lead Developer

There’s a class you can add to menu items to make them float right: menu-item-float-right

https://generatepress.com/knowledgebase/using-menus/#custom-classes

If you want to do it another way, you’ll need to add a new class in CSS:

@media (min-width: 769px) {
    .menu-item-float-left {
        float: left;
    }
}

Hope this helps 🙂