Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #293633

    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

    #293688

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.