Reply To: How to Recreate Generatepress responsive Header/menu

Home Forums Support How to Recreate Generatepress responsive Header/menu Reply To: How to Recreate Generatepress responsive Header/menu

Home Forums Support How to Recreate Generatepress responsive Header/menu Reply To: How to Recreate Generatepress responsive Header/menu

#185367
Martin Spicer

Thats brilliant thanks so much Tom! how can I change it so the normal header and menu turns off and the Mobile header and hamburger menu turns on? I was trying to do something like this

@media (max-width:1059px) {
        .mobile-header {
                display: initial;
        }
}
@media (max-width:1060px) {
        .main-navigation ul li a {
                display: none;
        }

but it doesnt seem to work, Have you any ideas? thank you so much!