Trying to get my navbar to stay collapsed at ipad size. I used the codes from here: Bootstrap 3 Navbar Collapse
But the navbar disappears when I applied the above code (I have max-width at 1200px). The code has this section at the bottom which should prevent the navbar disappearing in Bootstrap 3:
.navbar-collapse.collapse.in {
display: block!important;
}
However, this code doesn't work for me.
So I tried adding collapse.in in the first part of the code where .navbar-collapse.collapse is (line 12).
The navbar now appears, but is not in collapsed state and displays the navbar items in a list, like when a collapsed navbar is clicked. How do I get the navbar to stay collapsed? Thank you.