We're using the website builder (v13) with the Advantage Theme and are trying to embed Youtube and Vimeo video's. Based on a previous search of the forum we have found the following HTML code that seems to correctly embed a Youtube video.
<div class="embed-responsive embed-responsive-16by9">
<iframe width="560" height="315" src="https://www.youtube.com/embed/tY7vaistEsw">
</iframe>
</div>
If we then replace the Youtube generated iframe with the following for Vimeo, the HTML editor does not allow saving the HTML, i.e., assuming there's an error.
<div class="embed-responsive embed-responsive-16by9">
<div style="padding:57.42% 0 0 0;position:relative;">
<iframe src="https://player.vimeo.com/video/449642714" style="position:absolute;top:0;left:0;width:100%;height:100%;" frameborder="0" allow="autoplay; fullscreen" allowfullscreen>
</iframe>
</div>
<script src="https://player.vimeo.com/api/player.js"></script>
</div>Does anyone know how to embed Vimeo video's correctly?
Thanks, Paulo