Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
Foliovision › Forums › FV Player › Troubleshooting › mp4 video embedded using player is cut off? div layer behind video?
If I view it stand alone its fine, but when uploading it appears as it does in the screenshot.
two different uploads
<video src=”http://www.egodaily.com/wp-content/uploads/2017/04/churro.mp4″ class=”fp-engine” preload=”none” x-webkit-airplay=”allow”></video>
It seems to be the class=”fp-engine” which is moving the mp4 video off to the side?
Hi abz,
The problem is apparently caused by this CSS rule in your theme’s style sheet:
video { min-width: 100%; min-height: 100%; width: 800px; height: 450px; transform: translateY(2%) translateX(-20%); margin-top: -10px; }
Change the transform line to
transform: translateY(0) translateX(0);
Let me know if it worked!
Thanks,
Eduard