Reputation: 153
Currently my bootstrap nav is collapsing into button when the browser width is 768px and less ... how can i change it 800px and less ?
Thanks in advance
Upvotes: 0
Views: 108
Reputation: 710
You will need to make a custom build of bootstrap.
You need change the @screen-sm
variable in the "media queries breakpoints" section on this page.
@screen-sm
variable to 800 px
Compile and Download
button.Note: this will also change the breaking point for all of your col-sm-xx
classes too but that should not be a big deal.
Upvotes: 1