Is there a way I can center the brand name in the nav-bar
My current code is like
-
2020-12-15 11:40
Finally got it working (checked perfectly by me )
HTML is :
CSS is :
.center.navbar .nav,
.center.navbar .nav > li {
float:none;
display:inline-block;
*display:inline; /* ie7 fix */
*zoom:1; /* hasLayout ie7 trigger */
vertical-align: top;
}
.center .navbar-inner {
text-align:center;
}