I have the following navbar collapse:
<button type="button" class='btn btn-navbar' data-toggle='collapse' data-target='.nav-collapse'>
<span class="icon-bar"/>
<span class="icon-bar"/>
<span class="icon-bar"/>
</button>
However I only get a single line on the actual bar. Is there a way I can fix this?
Try:
The span tag is not a single tag. If you don’t close it properly, the browser interprets it as:
Which is why you were only getting one bar.