ssamuel68
ssamuel68

Reputation: 952

Bootstrap NavBar to the left side of the page

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

Answers (1)

Antfish
Antfish

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

Related Questions