Reply To: Adding a responsive secondary footer menu

Home Forums Support Adding a responsive secondary footer menu Reply To: Adding a responsive secondary footer menu

Home Forums Support Adding a responsive secondary footer menu Reply To: Adding a responsive secondary footer menu

#144719
Tom
Lead Developer
Lead Developer

In this case, it’s not possible for the sub-menu to appear up in the mobile menu without altering the HTML structure.

So you would want to do this:

@media (max-width: 768px) {
    .tertiary-navigation .menu > li > .sub-menu {
        top: 100%;
        bottom: auto;
    }
}