In my Rails 3.1.2 project, I'm utilizing Twitter Bootstrap 2.0.1 with bootstrap-sass. Both the bootstrap.css
and bootstrap-responsive.css
files are loaded, along with bootstrap-collapse.js
Javascript.
The layout is fluid with a navigation bar similar to this example. It follows the instructions for the navbar "responsive variation" found here. Everything works as expected: when the page width is less than around 940px, the navbar collapses and shows a button to expand it.
However, I want the navbar to remain uncollapsed until the screen width goes below 550px, as it still looks good at that size.
Is there a way to instruct Bootstrap to collapse the navbar only when the screen width is under 550px?
It's important to note that I am not looking to alter any other responsive behaviors such as stacking elements instead of displaying them side by side at this time.