Site logo

Archived topic

Top bar sticky

3 replies · Started by Anders Nielsen on September 18, 2019

Viewing posts 1–4 of 4

Hi

I'm have found some old posts, and it helped to get almost all the way...

I'm trying to make the topbar sticky

.top-bar
{
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
}

But on Safari, the sticky is not supported - so I use the "position:fixed" but then the topbar blocks the menu on chrome!!

What to do?

Hi there,

you need to include the -webkit prefix sticky property in your CSS:

position: -webkit-sticky;

Add that to your CSS

Great.. works :)

You're welcome

This archived topic is closed to new replies.