Color transperent on background video?

Need to add a simple tool to add color and adjust transparency to the background video

Hi @megaboc,

You can do this with some CSS.

Adjust the rgb colour and transparent value to suit.

<style>
.video-bg-container:before {
    content: '';
    background: rgba(0, 145, 255, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
</style>
3 Likes

Thanks! It work ) But i want this whitout custom css buy hand )