Centering navigation bars

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Jay Thomas
    New Member
    • Feb 2012
    • 1

    Centering navigation bars

    hey I'm creating a website for personal use using css and I'm stuck on this section:

    Code:
    #navigation ul li {
      display: inline;
        float: left;
          height: 28px;
        margin: 0px 35px 0px 7px;
    }
    
    #navigation ul li a{
        color: #bbbbbb;
        font-size: 13px;
        height: 28px;
        text-decoration: none;
    }
    
    #navigation ul li a:hover , #navigation ul li#active a{
        color: #f89421;
    I would like to center the text but at the moment it's to the left could someone reply asap to change this? :D thanks.
    Last edited by Dormilich; Feb 12 '12, 12:43 PM. Reason: please use code tags when posting code
  • Dave0291
    New Member
    • Jan 2012
    • 33

    #2
    Try using
    Code:
    text-align: center;
    for the elements that you want the text to be centered. I see that you have
    Code:
    float: left;
    by having that your li and ul elements will be floating towards the left. You might want to take that out if you don't want that.

    Comment

    Working...