• Hi there,

    I am trying to shift the menu along towards the logo (more towards the left) so I can fit another menu item without going onto another line. If this is possible, could somebody please off some advice? Here is the website.

    Thank you very much.

Viewing 1 replies (of 1 total)
  • hannah

    (@hannahritner)

    You can add this css:

    #nav-main ul.sf-menu {
      float: left;
      margin-left: -130px;
    }

    Also, just a note. I see you’ve added this:

    .container {
      width: 960px;
    }

    That completely throws off the responsiveness of your site. Try adding a media query around it:

    @media (min-width: 992px) {
    .container {
      width: 960px;
    }
    }

    Also if you want a menu on mobile be sure to select mobile navigation in Appearance > Menus.

    Hannah

Viewing 1 replies (of 1 total)
  • The topic ‘Primary Menu position’ is closed to new replies.