I am trying to position the arrow icon on the right side of the navigation bar, currently it looks like this:
https://i.sstatic.net/35wef.png
But I want it to look like the screenshot below:
https://i.sstatic.net/lvvAM.png
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand"><a href="#">Start Bootstrap </a>
</li>
<li><a href="#"><span style="float:right" class="glyphicon glyphicon-chevron-left"> </span></a>
</li>
<li><a href="#">Home</a>
</li>
<li><a href="#">About</a>
</li>
<li><a href="#">Contact</a>
</li>
</ul>
</div>
Please advise on how to achieve the exact layout shown in the screenshot.