• dexterusdesign.com
    I am trying to center align my menu so that everything isnt left justified can some one please help me out I cant seem to have it working correctly
    My current custom CSS file looks like this:

    .entry-content img {
       -webkit-box-shadow:none;
       box-shadow: none;
    }
    header#masthead hgroup {
       display:none;
    }

Viewing 1 replies (of 1 total)
  • Try something like this in you custom css

    .menu-primary-container {
    float:right;
    position:relative;
    left:-50%;
    text-align:left;
    }
    
    #menu-primary {
    list-style:none;
    position:relative;
    left:50%;
    }
    
    #menu-primary li {
    float:left; position:relative;}/* ie needs position:relative here*/
    text-align:left;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Center Aligning the menu’ is closed to new replies.