I want to make my navbar in BS3 to be of height 20px. How do I do this?
I\'ve tried the following:
.tnav .navbar .container { height: 28px; }
In Bootstrap 4
In my case I have just changed the .navbar
min-height
and the links font-size
and it decreased the navbar.
For example:
.navbar{
min-height:12px;
}
.navbar a {
font-size: 11.2px;
}
And this also worked for increasing the navbar height.
This also helps to change the navbar size when scrolling down the browser.