Just starting out with bootstrap and encountered an issue
I have two different classes for the navbar-header, one I want on the left and the other on the right. I need both to be responsive.
<nav class="navbar navbar-default navbar-fixed-top topnav " style="opacity:0.8" role="navigation">
<div class="container " >
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<a class=" topnav" href="#">image1</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="navbar-right" >
<a class=" topnav" href="#">image2</a>
</div>
</div>
<!-- /.container -->
</nav>
When viewed on a mobile device, the right-hand part moves to the bottom instead of staying at the top in both mobile and desktop view.
http://plnkr.co/edit/g1CwhhyDrSoVf3zTRl6E?p=preview
Any assistance would be greatly appreciated. THANKS