Sticky Header not working after last update

Hi, this site had a sticky header on the home page at “Trigger Offset 50.” Since updating the other day, the sticky header no longer appears on the frontend, but I can see it working perfectly on the backend.

Help is much appreciated.

Thanks,
Tina

There’s a couple of sticky bar issues that will be fixed on Monday. Apologies we had to have an early release with the WP 6.2 issue. The below is a workaround I’m sending around just for now. I actually couldn’t recreate on your site, so if you found a workaround already ignore this. On your site the height is a little smaller so you can change 1000px if you need, it’s arbitrary.

window.addEventListener("load", function() {
  window.document.body.style.height = "1000px";
  setTimeout(function() {
    window.document.body.style.height = "auto";
  }, 250);
});

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.