Set video background poster image size to Cover

Is there a way to set the video background poster image size to “cover”?

Hello Jonathan,

Thanks for writing in!

Please take a look at the solution shared in following resources.

Thanks.

I ended up doing this and it kinda works:
video {
background: url(image.jpg) no-repeat;
background-size: cover;
}

Would be great if there was an easier solution to this problem in the editor.

Hey Jonathan,

The background video poster image is set to cover by default so you don’t need to add any extra CSS to do that. Here’s the code already added in the theme:

.x-video.bg.poster, .x-video.x-video-bg.poster {
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

You can adjust the above code if needed. Hope this helps!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.