Fix Menu Bar

Hi, is it possible to fix the menu bar to the top of the page as you scroll down so it is always visible?

Thanks

You should try this CSS code:

#header .top-header {
    position: fixed;
    z-index: 99;
}

Worked! Thanks

That’s great news!