• Resolved Longbow

    (@faithfl)


    Hey there,
    Default for Gridframe’s Sub Menu, is to point left, in second tier nav.
    Can we make it point right instead?

    .nav-menu-dropdown-left .nav-menu:not(.mobile) .menu ul ul {
    right: calc(100% + 20px);
    left: auto;
    }

    If I swap left and right, I can start to make it happen:

    .nav-menu-dropdown-left .nav-menu:not(.mobile) .menu ul ul {
    left: calc(100% + 20px);
    right: auto;
    }

    I’m wondering if there’s an easier way.

    Thanks for any help,
    -e

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Theme Author Alexander Agnarson

    (@alxmedia)

    Hey!

    This is in Gridzone’s support forum, not Gridframe, so if a mod could move it, it would be great.

    To make the menu appear as you want, you just need to edit header.php and locate line 31:

    
    <header id="header" class="hide-on-scroll-down nav-menu-dropdown-left">
    

    Change that to:

    
    <header id="header" class="hide-on-scroll-down">
    

    And the dropdowns should now appear on the right side.

    Thread Starter Longbow

    (@faithfl)

    Hey Alex,
    Thank you. Code was even simpler…

    Changed left to right
    Line 31
    <header id=”header” class=”hide-on-scroll-down nav-menu-dropdown-right”>

    Cheers
    -e

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Sub Menu point right’ is closed to new replies.