Mobile menu won't hide using CSS and Media Queries For Dazzling Theme

Hi there,

I am looking to hide, or display none the mobile menu included in the Dazzling theme. I have it in the Child’s theme CSS for the Media queries part, however it still is not hiding the menu on mobile devices. I am using a bought plugin for that so that is why it is unnecessary.

Please help if you can!

Hi @ubopad,

I hope you are well today and thank you for your question.

You can try hiding the mobile menu by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Dazzling Options -> Other -> Custom CSS

@media (max-width: 768px){
.navbar-toggle {
    display: none;
}
}

Best Regards,
Movin