new template
<?php $this->extend('block_unsearchable'); ?>
<?php $this->block('content'); ?>
- <iframe <?= $this->size ?> src="<?= $this->src ?>" allowfullscreen></iframe>
+ <div class="embed-responsive embed-responsive-16by9">
+ <iframe class="embed-responsive-item"<?= $this->size ?> src="<?= $this->src ?>" allowfullscreen></iframe>
+ </div>
<?php $this->endblock(); ?>
The class embed-responsive-16by9 should be passed from the outer div with ce_youtube to the iframe-enclosing div
new template
<?php $this->extend('block_unsearchable'); ?> <?php $this->block('content'); ?> - <iframe <?= $this->size ?> src="<?= $this->src ?>" allowfullscreen></iframe> + <div class="embed-responsive embed-responsive-16by9"> + <iframe class="embed-responsive-item"<?= $this->size ?> src="<?= $this->src ?>" allowfullscreen></iframe> + </div> <?php $this->endblock(); ?>The class
embed-responsive-16by9should be passed from the outer div with ce_youtube to the iframe-enclosing div