Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #542247

    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)

    #544238

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.