Reply To: Two row menu shows only one row for mobile

#22699
Daniel Tara
Keymaster

This CSS should fix the issue:

@media screen and (max-width: 760px) {
    #access:target .menu a {
        height: auto !important;
        max-height: 80px;
        transition: max-height .25s, line-height .25s;
    }
}