Hi! I'm trying to fix a text element to the top of a page using custom CSS, as follows:
.fixed-element{
position: fixed;
top: 20px;
left: 5%;
z-index: 99999;
}
Unfortunately, the element disappears behind content below upon scrolling. This is the relevant page https://estherdegraaf.nl/ontwikkelomgeving/eicas/
I've tried upping the Z-index but nothing seems to work. Does anyone have an answer? Thanks!