I'm creating a website but I have a problem, when I create a header with position: fixed, the header that I make is positioned under the content and the header I make is stacked and I also use overflow: hidden but the content is still over the header
this is my website: https://zoomcoding.id/members/santriwibs/tes/
PROBLEM
Overlapping issue
SOLUTION
use z-index
CSS property on header
element
e.g
#header {
z-index: 10;
}