Reputation: 947
I'm using bootstrap 3.2 and the default breakpoints. I would like the navbar to collapse into mobile mode at md (< 992px) instead of sm (< 767px) without changing the default breakpoints. How do I do that best?
Upvotes: 0
Views: 1157
Reputation: 118937
You have 3 options:
Note that for option 2 and 3, you are looking to change the @grid-float-breakpoint
variable. In your example, you want to change the value from @screen-sm-min
to @screen-md-min
Upvotes: 4