Background video in header how to set height

You need to set the size of the container and the video will scale to the container size

I tend to have a css definition set in my custom css file

.full-height { 
    min-height: 100vh; 
   
}

The I can add that class to any container like this:

image

1 Like