I´m using Enfold – Photography theme and I have a fullscreen video background in the home page (with the “Slideshow Full Screen”), but sometimes the video shows with black bars at top of at both sides.
I need that video always shows fullscreen fit (similar to background-size: cover;) (no matter if video is cropped)
Hi,
Try adding this at the very end of your theme / child theme functions.php file:
function add_custom_script(){
?>
<script>
(function($){
$(window).load(function() {
$(this).trigger('resize');
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Regards,
Josue