How to center nav bar pills?

user3735892

i cant seem to center them within the container, i tried using text align but wouldnt work. I am using twitter bootstrap so maybe something is taking priority?

 <div class="container">
     <ul class="nav nav-pills" role="tablist">
      <li role="presentation" class="active"><a href="#">Home</a></li>
      <li role="presentation"><a href="#">TierList</a></li>
      <li role="presentation"><a href="#">Tournaments</a></li>
      <li role="presentation"><a href="#">Team Maker</a></li>
      <li role="presentation"><a href="#">Counters</a></li>
      <li role="presentation"><a href="#">Forum</a></li>
      <li role="presentation"><a href="#">Contact Us</a></li>
    </ul>

css

 .nav-pills > li > a {
 margin-right:10px; /* pill spread */
 font-family: "kodakku"; /* font */
 font-size: 20px;
 }
yaloumi

Wrap up your nav with another div and use text-center, and use display:inline-block.

HTML

<div class="container">
  <div class="text-center">
     <ul class="nav nav-pills" role="tablist">
         <li role="presentation" class="active"><a href="#">Home</a></li>
         <li role="presentation"><a href="#">TierList</a></li>
         <li role="presentation"><a href="#">Tournaments</a></li>
         <li role="presentation"><a href="#">Team Maker</a></li>
         <li role="presentation"><a href="#">Counters</a></li>
         <li role="presentation"><a href="#">Forum</a></li>
         <li role="presentation"><a href="#">Contact Us</a></li>
      </ul>
  </div>
</div>

CSS

.nav-pills{
    display: inline-block;
}

.nav-pills > li > a {
    margin-right:10px; /* pill spread */
    font-family: "kodakku"; /* font */
    font-size: 20px;
}

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to Center a Nav bar

From Dev

How to center my Nav Bar?

From Dev

How to center Nav Bar CSS

From Dev

Can't figure how to center the nav bar

From Dev

How to center a text nav bar with CSS

From Dev

how to center lists in a nav bar with dropdowns?

From Dev

How to Center your Foundation Nav bar/ Top-bar

From Dev

How to change the style of nav-pills and navbar?

From Dev

How do I center my nav bar on its own line?

From Dev

How do I center my nav bar to the screen?

From Dev

How do you position a nav bar in the center of the page with css

From Dev

How do I center my nav bar on its own line?

From Dev

Nav bar won't center

From Dev

CSS Center nav bar links

From Dev

makes nav-pills collapsable just like nav-bar in bootstrap

From Dev

makes nav-pills collapsable just like nav-bar in bootstrap

From Dev

how can I get my user icon on the side nav bar to the center? and how can i create border for the side nav bar?

From Dev

how to increase space between nav-pills bootsrap?

From Dev

how to increase space between nav-pills bootsrap?

From Dev

How to center nav in div

From Dev

How to center the nav

From Dev

Align the content in the nav bar to the position center in bootsrap

From Dev

Center align the nav-bar content in Bootstrap

From Dev

Why won't my nav bar center?

From Dev

Bootstrap - Center text and search field in nav bar

From Dev

Align text in center of Bootstrap Nav Bar

From Dev

Nav bar won't center in Bootstrap 3

From Dev

How to make menu, navbar nav-pills nav-stacked collapse Twitter-bootstrap 3.0

From Dev

How can I get "divider" displayed for "nav-pills" and "nav-stacked"

Related Related

HotTag

Archive