Quadrat Black theme – Sticky Header?

  • Unknown's avatar

    Hi Gods of wordpress.

    Is there a simple bit of .css code I can add to make my site’s header sticky please?

    Or any other way I can make it sticky without having to change theme again? It’s the Quadrat Black theme.

    Thanking you!

    The blog I need help with is: (visible only to logged in users)

  • Hi! Feel free to try the code below – sticky headers can sometimes be a little tricky but this may help:

    /*Sticky header sy*/
    .wp-site-blocks {
    	overflow: visible;
    }
    .wp-site-blocks> header {
    	position: sticky;
    	top: 0px;
    	z-index: 999;
    }
  • The topic ‘Quadrat Black theme – Sticky Header?’ is closed to new replies.