Pergunta

Is there any way to make the li elements in the navbar closer to each other?

This is what I got now: http://www.bootply.com/JTr4LHykbe

Foi útil?

Solução

Just mention width : auto and it will work fine

.navbar-default .navbar-nav>li {
width: auto;
}

If you mention any static width to li then if any of the text is too big then it will overflow the li tag.

to make the navbar center:

 .navbar {
  background: transparent;
  border: none;
  float: none;
  width: 50%; // adjust it as you want
  margin: auto;
}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top