Reputation: 952
I'm using the navbar bootstrap example from the website examples
http://getbootstrap.com/examples/navbar-fixed-top/
It's possible to align to the left the button that show the menu when the page is shrunk?
Upvotes: 2
Views: 2211
Reputation: 1493
You could override the navbar-toggle class like this:
.navbar-toggle {
position: relative;
**float: left;**
padding: 9px 10px;
margin-top: 8px;
**margin-left: 15px;**
margin-bottom: 8px;
background-color: transparent;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
The starred attributes have been changed.
Upvotes: 1