This is my CSS/LESS CSS code so far:
//make navbar taller @navbarHeight: 60px; //make navbar link text 18px .navbar-inner { font-size: 18px; } //make n
I've just had a similar issue with Bootstrap 3 but with the brand eliment. In the end I used the following css:
.navbar-brand { font-size: 3em; line-height: 1em; }
My nav bar has increased in size due to a 50px image, with top and bottom margins of 10px. Not sure if that is of any help.