Try this:
.navbar .btn-navbar {
float: left;
margin-left: 10px;
}
Thank you rdellconsulting that works like a charm however the dropdown menu appears on the right hand side of the screen when the menu button is pressed.
What would be the best way to get the menu button and dropdown menu both on the left hand side of the screen?
Thank you.
Sorry, didn’t check that. Add the following:
.nav-collapse, .nav-collapse.collapse {
left: 0px;
}
May need to adjust 0px, eg 10px.
Thank you, I hope this post will help others.