Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Center menu items

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #236748
    gombroo
    Participant

    Hello,
    how to center all menu items? At the moment they seem to be left aligned. Please take a look: http://royal-camp.pl/
    Even in the original theme they don’t look very well
    http://ketchupthemes.com/themes-demo/?theme=GreekRestaurant
    Thanks!

    #236750
    Paulie_D
    Member

    Remove the floats

    #kt-navigation li {
        display: inline;
        font-size: 12px;
        margin: 0;
        padding: 0;
        /* float: left; */  /* remove the float */
        position: relative;
        padding: 0 30px 0 30px;
        border-right: 1px solid #ffffff;
    }
    

    then set the menu to align the contents to the center

    #kt-navigation {
        list-style: none;
        margin: 0px auto;
        position: relative;
        text-align: center; /* this */
    }
    
    #236752
    gombroo
    Participant

    Life is beautiful now :) Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.