• I am creating the website http://writtenbymary.com using wordpress. I am using twenty fourteen theme and am trying to align the menu to center. I tried everything but in vain.I would really appreciate it if anyone can help me out with this. Thanks in advance!

Viewing 1 replies (of 1 total)
  • Andrew Nevins

    (@anevins)

    WCLDN 2018 Contributor | Volunteer support

    Add:

    .primary-navigation {
     margin: 0;
     float: none;
    }
    
    .primary-navigation .nav-menu {
     display: table;
     margin: 0 auto;
    }
    
    .primary-navigation a {
     margin: 0 20px;
    }

    You probably want to apply that in a media query just for desktops too.

    By the way if you’re customising the Twenty Fourteen theme without creating a Child Theme then you lessen the chances of us being able to help you, because it turns into a custom theme.

Viewing 1 replies (of 1 total)

The topic ‘aligning the menu to center’ is closed to new replies.