Site logo

[Support request] Sticky Header

Home Forums Support [Support request] Sticky Header

Home Forums Support Sticky Header

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2400402
    Think & Learn Pvt Ltd

    I want to make the entire header sticky, How can I do that? https://guide.koskii.com/

    #2400638
    Ying
    Staff
    Customer Support

    Try this CSS:

    @media (min-width: 769px) {
    nav#site-navigation {
        position: sticky;
        top: 104px;
    }
    .top-bar.top-bar-align-left {
        position: sticky;
        top: 0;
    }
    
    header#masthead {
        position: sticky;
        top: 22.5px;
    }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.