How to Hide menu in mobile version

Hello I can’t hide mobile menu, it’s always visible on all phones.
Is it possible to manage it?
Thanks

Hi @mwth,

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

This is happening on your site because of the following custom CSS code which you have used on your site to center align the navigation.


.navbar-default .navbar-collapse {
    float: none;
    margin: 0 auto;
    display: table !important;
}

To resolve this issue try changing the above custom CSS code on your site with the below CSS code.

@media (min-width: 768px){
.navbar-default .navbar-collapse {
    float: none;
    margin: 0 auto;
    display: table !important;
}
}

Best Regards,
Movin

Thank you, it works!

You are most welcome here :slight_smile:

Hi.
I got the same problem (I can’t hide mobile menu) -
but I couldn’t solve it with the css above.

site: udvidetvirkelighed.nu

Can you help me too, please?

@mortenhall I visited your shared site and it seems you are having different problem than the problem posted in this topic so to help us keep support thread separates could you please create your own thread for your question here https://colorlibsupport.com/c/activello/ instead of replying on others thread as it makes the thread messy and hard to read.

If you want to you can also add reference of this thread in your newly created thread.

We would be more than happy to help you on your new thread.