Twitter Bootstrap - On collapse, the navbar options do not turn into a button that shows the options
twitter-bootstrap
Solution
You need to include the `bootstrap-responsive.css` stylesheet in order for the responsive feature to work.
http://getbootstrap.com/2.3.2/scaffolding.html#responsive
Problem
I have this markup: ``` <div class='navbar'> <div class='navbar-inner'> <div class='container'> <a class='btn btn-navbar' data-target='.nav-collapse' data-toggle='collapse'> <span class='icon-bar'></span> <span class='icon-bar'></span> <span class='icon-bar'></span> </a> <div class='nav-collapse'> <ul class='nav'> <li class='active'> <a href='#'>Home</a> <a href='#'>Option 2</a> <a href='#'>Option 3</a> </li> </ul> </div> </div> </div> </div> ``` It renders ok when the screen is full, but when I collapse the screen, it does not show the button which expands to show the options. Is there something I am not doing correctly? Any idea why the button is not being shown after screen collapse? Thanks!