My Community Pro Theme Setup

  1. Home
  2. Docs
  3. My Community Pro Theme Se...
  4. Extras
  5. Allow Header to Scroll, and Not Be Sticky at the Top

Allow Header to Scroll, and Not Be Sticky at the Top

If you would like a Header that scrolls with the page, rather than being sticky at the top on the screen, you can add some CSS.

Go to Appearance > Customize > Additional CSS and add the following:

@media only screen and (min-width: 960px)
    .site-header {
        position: relative;
    }
}