How to increase decrease navbar height in Bootstrap? Twitter bootstrap navbar fixed top overlapping site?
Just change the min-height: to what you want it to be. For example: 50px
Go to your CSS File and change the body padding to also 50px.
Good read:
navbar-fixed-top-bootstrap
.navbar-nav > li > a {padding-top:5px !important; padding-bottom:5px !important;}
.navbar {min-height:50px !important}
If you are on a template with a navbar which is fixed to top, you have to modify another thing.Go to your CSS File and change the body padding to also 50px.
body { padding-top: 50px; }
Good read:
navbar-fixed-top-bootstrap
Comments
Post a Comment