-1

I have a problem with my navigation bar. I want all of my items to be in the same row, I can not find the problem, why is the last one on the second row?

Here is the code:

<div class="collapse navbar-collapse text-center" id="bs-example-navbar-collapse-1">
                    <div class="col-md-9 col-xs-12 nav-wrap">
                        <ul class="nav nav-tabs">
                        <li><a href="index.html" class="page-scroll">Acasa</a></li>

And this is how it looks:

enter image description here

iOSdeveloper
  • 103
  • 11

2 Answers2

0

this is just because you have a class collapse navbar-collapse text-center because of text-center property your 1st element aligned as centered and onwards. remove text center from the class of your div

Muzammil
  • 13
  • 6
0

the answer is this: remove the nav-wrap from div.

thank you all!

iOSdeveloper
  • 103
  • 11