[Resolved] Vertical Menu / Submenu

Home Forums Support [Resolved] Vertical Menu / Submenu

Home Forums Support Vertical Menu / Submenu

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #986272
    Kathy

    Hello –
    I need help with my vertical submenu. It is not expanding. I want the submenu to expand without blocking the next link under. Click on the first link in the menu and you will see what I am talking about.

    I don’t know what to do to make this happen. Can you please help me?

    Thank you!

    #986464
    David
    Staff
    Customer Support

    Hi there,

    did you find a solution? I am not seeing the issue – let me know.

    #986475
    Kathy

    No. I tried a plugin that didn’t work out. Can you please take another look? I have the original menu up. Thanks!

    #986609
    David
    Staff
    Customer Support

    Try adding this to your CSS:

    .main-navigation ul ul {
        position: relative;
    }
    #986620
    Kathy

    That worked! Thank you. I also found the settings for Generate Press but I can’t find where the logo goes at the top of page instead of bottom like you see. Where would I find that setting?

    #986641
    David
    Staff
    Customer Support

    Its position has been changed with this CSS in Customizer > Additional CSS:

    .site-branding,
    .site-logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    Just delete that block of code.

    If you want to give the logo and menu some breathing room add this CSS to push the menu down:

    @media(min-width: 769px) {
        .site-logo {
            margin-bottom: 40px;
        }
    }
    #986648
    Kathy

    Thank you!

    #986660
    David
    Staff
    Customer Support

    You’re welcome

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.