Problem
Sticky header does not stick while scrolling.
Causes
Offset settings incorrect
Z-index issue
Parent container overflow hidden
Solution
Enable Sticky → Top
Set offset (e.g. 100px)
Add CSS:
selector {
z-index: 999;
}
Disable overflow hidden from parent container
Pro Tip
Avoid using sticky inside nested containers.







