In wordpress I'm using a plugin that create this iframe:
<iframe scrolling="no" allowfullscreen="" src="http://...k.jpg&is_stereo=false" width="100%" height="1200px"></iframe>
This is the array of the php page:
$a = shortcode_atts( array(
'img' => '',
'video' => '',
'pimg' => '',
'stereo' => 'false',
'width' => '100%',
'height' => '1200px',
), $atts );
and this the php code:
<iframe width="<?php echo $a['width']; ?>" height="<?php echo $a['height']; ?>" scrolling="no" allowfullscreen src="<?php echo $iframe_url; ?>"></iframe>
The width is perfect and responsive.
I need to have a full height iframe. How?