Navbar in mobile view

Hi

I’m using Activello theme on www.karatesuvi.ee page and I’m happy with it but there’s one thing that bothers me. In mobile (or when browser size is smaller) the navbar is always opened and it hides the logo.
I probably messed it up somehow but would need a little help to fix it. Thanks in advance.

Br
weix

Hi weix,

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

I could confirm the issue on your site which is causing by the following custom CSS code that you are using on your site.


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

To resolve the issue try changing above CSS code as below.


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

Best Regards,
Movin

Hi Movin,

Thanks for quick answer. That really solved the problem and the mobile view now looks like I wanted. :slight_smile:

Br,
weix

You are most welcome here :slight_smile: