I recently started working with Bootstrap and am trying to create a navbar
.
The problem is that navbar
appears to be normal until we decrease the size of the window where it gives collapse
as it should, but the toggle
button only works in Google Chrome:
<div class="navbar navbar-inverse navbar-static-top">
<div class="container">
<a href="#" class="navbar-brand">RaminhaGest</a>
<button class="navbar-toggle" data-toggle="collapse" data-target=".navHeaderCollapse">F</button>
<div class="collapse navbar-collapse navHeaderCollapse">
<ul class="nav navbar-nav">
<li><a href="#">Home</a></li>
</ul>
</div>
</div>
</div>