How do I disable the Mobile menu on Illdy theme

Hi

I am trying to disable the mobile menu function for on the Illdy theme because it is not working on all devices and browsers…

Does anyone know how to disable the mobile menu only? I want the main menu to still work on desktop —so I do not want to disable .top header but just the mobile menu function …it seems that there is only one unifying class for displaying header

Hi there

You can use this code to disable it:

media only screen and (max-width: 992px){
.open-responsive-menu {
    display: none;
}
}

Add this code in the Appearance > Customize > Additionall css

1 Like