I\'m using Twitter Bootstrap 2.0.1 in a Rails 3.1.2 project, implemented with bootstrap-sass. I\'m loading both the bootstrap.css and the bootstrap-respon
This is a great example of where you could be using the LESS version of the Bootstrap CSS files. How to do this is below.
Even better would be to submit this as a pull request on Github so that everyone can benefit and your "custom code" would hopefully be part of Bootstrap moving forward.
variables.less that specifies when to collapse the navbar. Something like: @navCollapseWidth: 979pxresponsive-navbar.less...
@media (max-width: 979px) to @media (max-width: @navCollapseWidth) @media (min-width: 980px) to @media (max-width: @navCollapseWidth - 1)Of course... you'd have to compile LESS using one of the suggested methods.