Primary Menu display change

  • Unknown's avatar

    Is there a way to have the primary menu bar stay at the top of the display while scrolling down a page in Hemingway?

    Thank you for your suggestions.

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

  • Unknown's avatar

    Hi Gwen,

    The following snippet would fix your main menu to the very top of your page, and keep it there when scrolling:

    nav#site-navigation {
        position: fixed;
        top: 0;
    }
    
    header#masthead {
        margin-top: 60px;
    }
    
    .admin-bar nav#site-navigation {
        top: 30px;
    }

    Can you give that a try and let me know how it goes?

  • The topic ‘Primary Menu display change’ is closed to new replies.