• Resolved RickAero

    (@rickaero)


    Hi,

    There’s a large gap above the Main Nav Menu and the Header. This only appears in POSTS and PAGES. I tried deactivating other plugins and also decreased the Navigation Link Vertical Padding in NAV OPTIONS. It closed it a little but , not all the way. How can i fix this? thanks!

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Oliver Campion

    (@domainsupport)

    Hi,

    This CSS file on your site is changing the position property of .navigation-top …

    .navigation-top {
    background: #fff;
    position: relative;
    z-index: 10;
    }

    … which is making the gap appear. So you can either add one of these to your “Customiser – Additional CSS” … this one changes the position back …

    .navigation-top {
    position: absolute;
    }

    … or this one will remove the gap …

    .custom-header {
    margin-bottom: 0 !important;
    }

    Let me know one of those solutions that fixes your problem.

    Oliver

    Thread Starter RickAero

    (@rickaero)

    Beautiful! thanks a bunch, that worked. have a good weekend!

    Plugin Author Oliver Campion

    (@domainsupport)

    Glad that worked for you.

    Oliver

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Vertical padding above main nav menu’ is closed to new replies.