Site logo

Archived topic

Top Bar Widget Area not showing

3 replies · Started by Tim on May 4, 2021

Viewing posts 1–4 of 4

I have activated Header as navigation and made it sticky.

Now I want to display a top bar above the header (which is also sticky with the header) and have followed the instructions here, but ho top bar appears.

Site URL attached.

Hi there,

the Top Bar is hidden by the Fixed Navigation CSS you have:

nav#site-navigation {
    position: fixed;
    top: 0;
}

Change that to:

nav#site-navigation {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

That worked, thanks!

You're welcome

This archived topic is closed to new replies.