On my landing page, I want to have a full-page slider with a transparent header, and a sticky transparent socket. I’m using the following, but the full-page slider seems to sit on top of the socket:
.page-id-734 #socket {
position: fixed;
background-color: rgba(255,255,255,0.2);
bottom: 0;
width: 100%;
z-index: 1;
}
Thoughts?
Hey pbspence,
Please try this instead:
.page-id-734 #socket {
position: fixed;
background-color: rgba(255,255,255,0.2);
bottom: 0;
width: 100%;
z-index: 10 !important;
}
Best regards,
Rikard
Thank you! Why 10?