Skip to content

Snippet: VC Support For “Lazy Load for Videos” Plugin

/* Simply add this custom CSS to the site to fix the issues with the Lazy Load for Videos Plugin */
.wpb_video_widget .wpb_video_wrapper,
.responsive-video-wrap,
.responsive-audio-wrap {
    padding: 0 !important;
    position: static !important;
}
.wpb_video_widget .wpb_wrapper iframe,
.responsive-video-wrap iframe,
.responsive-audio-wrap iframe,
.responsive-video-wrap object,
.responsive-audio-wrap object,
.responsive-video-wrap embed,
.responsive-audio-wrap embed {
    position: static !important;
}
Back To Top