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 displays normally when the screen is full, but when I squeeze the screen, it does not show a button that expands to show options. Something I'm not doing right? Any idea why the button is not showing after the screen crash?
Thank!
source
share