Hi!
I have been founding around the forum but I didn’t find nothing.
Is there any option to add transparency to a video brackground or instead of that, aply like a white(with transparency) layer in front of it?
Thanks
Hey mikel!
Thank you for using the theme.
Are you using the color section? Add an id to it, transparent-bg for example. Add something like this on Quick CSS or custom.css:
#transparent-bg:before {
content: '';
display: block;
width: 100%;
min-height: 1000px;
background: rgba(255,255,255,.4);
z-index: 9999;
position: absolute;
}
Cheers!
Ismael