I'm using the recommended release since the current client only wants recommended release modules. Last update was 2012-Aug.

I'm mainly using this for vimeo embeds. I tried to input the width as 100% but it only registers it as 100px. The height doesn't work neither. It seems that this module only works for fixed width as of now.

Are there any other work around to get this to be responsive? I tried to adjust the iframe width/height to 100% via javascript, but that doesnt seem to work as I think its loading the video first and doing any other size changes wont get accounted for. What other solutions are there to this?

Comments

kclarkson’s picture

I am having the same issue.

Melissamcewen’s picture

Hi all, the only way I've been able to fix this is through this technique, which I implemented in my CSS and then wrapped the videos using Jquery https://css-tricks.com/NetMag/FluidWidthVideo/Article-FluidWidthVideo.php

//////////////////////////////
//Responsive Vimeo videos
//////////////////////////////
jQuery(document).ready(function($) {
    $( 'iframe[src*="vimeo.com"]').wrap( '<div class="videoWrapper"></div>' );
});