Hello @rachelsingasong
The question is not related directly with our plugin, it is simply CSS and HTML. Please, follows the steps below:
1. Go to the WordPress menu option: “Appearance > Customize > Additional CSS”
2. Enter the following style definition:
.video-container {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video-container iframe,
.video-container object,
.video-container embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
3. Finally, you should to insert into the content of the products the iframe tag generated by Youtube for the video, into a div tag with the class name “video-container”, defined previously, as follows:
<div class="video-container"<iframe width="640" height="390" src="https://www.youtube.com/embed/Quosrug9pgo" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></div>
and that’s all.
Best regards.