user2836797
user2836797

Reputation:

Bootstrap 3: How can I horizontally center the navbar collapsed button?

I am talking about the small button on the right:

http://imageshack.us/scaled/thumb/32/7n9i.png

I have tried the following CSS selector, without success:

display: block;
margin: 0 auto;

Upvotes: 0

Views: 2903

Answers (1)

Bass Jobsen
Bass Jobsen

Reputation: 49044

.navbar-toggle 
{
    float:none;

}   
.navbar-header
{
    text-align:center;
}

See also: How to center a button within a div?

update

maybe set padding-right of the button too:

margin-right: 26px

(15px + half the size of the button)

Upvotes: 1

Related Questions