No, there is no conflict.
You can increase the thumbnail’s width with custom CSS:
a.lazy-load-youtube, .lazy-load-vimeo {
width: 100%;
}
(Default width is 600px.)
Does this solve your problem?
Regards,
Kevin
I’m having a related problem: The black YouTube box shows up at 600px, but the preview image of the video is much smaller than the back background of the video player. I’d like the preview to occupy 100% of the player’s width.
Any suggestions?
Hi peter-a,
you can use the CSS background-size property. As follows:
a.lazy-load-youtube, .lazy-load-vimeo {
background-size: cover!important;
}
Regards,
Kevin
Hi Kevin,
Hmm, that didn’t work. The preview image is still the same size, about 60% of the black background.
Peter
P.S.: I discovered that in your suggestion to ckubs, above, the !important is necessary to make it work, at least on my site.