Hi,
I want to add an overlay in my video slider. I added a custom CSS code but the video appears first, and then the overlay applies. This is the code i have:
.rs-background-video-layer:before {
display: block;
position: absolute;
top: 0;
right: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(207, 31, 76, 0.6);
content: ” “;
z-index: 99999;
}
How can i make the overlay appear at the same moment? Thank you