Sub menus

  • Unknown's avatar

    Hi

    I’ve just created sub menus under the main menu heading- Recipes. The first 3 have gone to the right, out of the box. Does anyone know how to correct this?

    Thanks

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    I see the issue and I’ll tag this thread for a Themes Staff follow-up. Please subscribe to the thread so you are notified when they respond and please be patient while waiting.

  • Unknown's avatar

    Oops! I just noticed this is a CSS issue. Sorry for interjecting.

  • Unknown's avatar

    Hi there, it is this rule in your CSS that is causing the issue.

    .nav-menu li:nth-of-type(-n+3) {
        left: 130px;
        position: relative;
    }

    Let’s change that rule to specifically target the twitter and instagram menu items (by unique ID) with the following and change the “left” to “right”.

    .menu-item-89, .menu-item-90 {
        right: 130px;
        position: relative;
    }
  • The topic ‘Sub menus’ is closed to new replies.