Site logo

Archived topic

sticky header with GP "Target" demo site

5 replies · Started by Pauline on January 9, 2021

Viewing posts 1–6 of 6

Hello

I am using your demo site Target because of it's header/hero layout. Please could you tell me the best way to make the header "sticky".

Many thanks
Pauline

Hi there,

do you want the entire Header to be sticky ie. the top bar, site header and navigation ?

Yes please!

Try this CSS:

@media (min-width: 769px) {
    .top-bar {
        position: sticky;
        top: 0;
        z-index: 99;
    }
    .site-header {
        position: sticky;
        top: 39px;
        z-index: 99;
    }
    .main-navigation {
        position: sticky;
        top: 147px;
        z-index: 99;
    }
}

Adding CSS: https://docs.generatepress.com/article/adding-css/

Thankyou very much Leo for the CSS - it worked perfectly :-)
Thanks also to David for responding initially to my question.
Good wishes to you both :-)

Glad we could help :)

This archived topic is closed to new replies.