How to eliminate black frames from video playback?

how can the black frames to the left and right in the video be avoided? They are not showing on YouTube. website: www.10xfuel.com

Thank you!

Hi @10xfuel

Please follow these steps:

  • First, find the base CSS of your theme by going to Theme => Edit Code => Determine the base CSS file of your theme. It usually is “theme.css”, “base.css”, or another one, depending on your theme.

  • Secondly, once you find out this file, add this code to the file:

.video-stream.html5-main-video {
  width: none !important;
  left: none !important; 
}

I hope that it will work for your site.