0

So I am using this navbar class : navbar navbar-inverse navbar-fixed-bottom Which I use to display a bar at the bottom of the page.

Is it possible to somehow make it smaller in height than 40px? Saw a lot of posts about similar thing like this for exaple: Decreasing height of bootstrap 3.0 navbar

But none of them worked for my navbar after modifiyng the names.

Community
  • 1
  • 1
Kaspar
  • 1,600
  • 4
  • 24
  • 46

1 Answers1

2

Try this

nav{
    min-height:30px !important;
    height:30px;
}

And similarly decrease the size for other contents inside

jsfiddle http://jsfiddle.net/harshdand/0woqrLdL/

Updated one: http://jsfiddle.net/harshdand/0woqrLdL/1/

Harsh
  • 1,072
  • 1
  • 10
  • 16