Change the width of when the mobile nav kicks in

Hi there,

How do I change the width of when the mobile nav kicks in? At the moment the theme is set to show the mobile nav at 767px max width.

I would like it set to 991px where in the CSS is this to be edited?

Please advise,

Many thanks,

George

Hi @georgeoz,

Use this css code:

@media (max-width: 991px) {
  .nav.navbar-nav {
    float: none;
  }
}

Thanks,

Cristian