Video background does not scale down well / not responsive

Hello,

Can you please take a look at the background video on this website? http://www.agilest.org/home/
The background video does not scale down well for screen sizes less than 1280px. The video stops covering the entire screen width once the screen width gets below 1280px.

Thank you in advance!

[Content Hidden]

Hey Marina,

Your theme is adding a styling to the video tag which is causing issues. Try the CSS snippet below and see if it does the trick!

.fl-row-bg-video .fl-bg-video > video {
  max-width: none;
}

Ben

Ben,

You guys are amazing!

Perhaps, this little snippet of code does not seem like a big deal to you, but it means a lot! You guys have the best support I have encountered in this field! Thank you very much.

This did the trick:
.fl-row-bg-video .fl-bg-video video {
max-width: none;
}

Hey Marina,

Thanks for the kind words, and no worries at all! :slight_smile: Enjoy BB!

Ben