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
Add a z-index
CSS property to #masthead
to make its z-position higher than the images. Give masthead
a z-index
of 1 or higher to make it be above the other images.