Site logo

Archived topic

Page Hero Video Background Full Screen

3 replies · Started by letsdoit on July 9, 2020

Viewing posts 1–4 of 4

Hi Team,

Could you advice why my video is not fullscreen. It checked as fullscreen in Element. I tried checking and unchecking it too.

Hi there,

try updating this CSS:

.background-video {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.8;
}

to

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

Thanks a lot, it worked.

You're welcome

This archived topic is closed to new replies.