Reply To: Mobile Menu

Home Forums Support Mobile Menu Reply To: Mobile Menu

Home Forums Support Mobile Menu Reply To: Mobile Menu

#234171
Tom
Lead Developer
Lead Developer

Just a design decision on my part.

Easy to make everything center with some CSS:

@media (max-width: 768px) {
    #site-navigation,
    #site-navigation ul ul {
        text-align: center;
    }
    .menu-item-has-children .dropdown-menu-toggle,
    nav ul ul .menu-item-has-children .dropdown-menu-toggle {
        float: none;
    }
}

Let me know if that helps or not 🙂