I tryed to get a sticky header for my website https://sacconicase.com/case-vacanza/lignano-sabbiadoro-appartamenti-vacanze/
I found some CSS
#masthead {
position: sticky;
top: 0;
}
it works but not completely: when I scroll down the pictures cover the header
2
Answers
Add a
z-index
CSS property to#masthead
to make its z-position higher than the images. Givemasthead
az-index
of 1 or higher to make it be above the other images.z-index of 0
z-index of 1
Try removing
position: relative
on your images and that should work