Is it possible to make Bootstrap's collapsed, aka "Hamburger", menu appear by default on the left side of the browser?
If I want to have the collapsed menu positioned on the left side, do I just need to modify the code as shown below?
<!-- the collapsing menu -->
<div class="collapse navbar-collapse navbar-left" id="navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!--/.nav-collapse -->