Reputation: 165
I was able to make the navbar collapse sooner using the CSS code from http://www.bootply.com/120604 How do I make the grid collapse or stack into 1 column sooner?
I only have two columns: col-sm-3 and col-sm-9. The responsive design works fine on mobile, but I would like to achieve the same behavior on tablets (768px to 991px).
I have to use Bootstrap CDN, so my only option is to override the default using CSS. Thanks.
Upvotes: 1
Views: 760
Reputation: 15750
No need to override the css, just use md
in your col-*-# classes instead of sm
. i.e.
<div class="col-md-3">Stuff</div>
<div class="col-md-9">More Stuff</div>
Then go to the bar, because you're done!
Upvotes: 2