bootstrap 3 - how do I place the brand in the center of the navbar?
css:
.navbar-header {
float: left;
padding: 15px;
text-align: center;
width: 100%;
}
.navbar-brand {float:none;}
html:
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<a class="navbar-brand" href="#">Brand</a>
</div>
</nav>
Use these classes: navbar-brand mx-auto
All other solutions overcomplicate the matter.