I Want to change embed youtube video width and height on my product page but it is only changing on my shopify product page section, but didnt show these changes on my website product page.
How can i change the size of embed video on the product page.
I am currently using prestige version 5.
This is the width and height that i am trying with the embed code:
Pictures attached:
Could you share your product page link so I can check?
CSS of your theme removes width height settings in your code
Also, if it applies your settings, your video will look like this
Yes i want video like this, so what should i have to do?
Please add this code to Custom CSS in Online Store > Themes > Customize > Theme settings
.ProductMeta__Description .VideoWrapper {
overflow: unset;
height: 560px
}
.ProductMeta__Description .VideoWrapper iframe {
width: 300px;
height: 560px;
}
Alright let me do that.. and autoplay is also not working when i am adding autoplay code in html…can you also tell that how to do this.. so that i will apply combine code in custom CSS for both of my problem
I have applied your code and it works but the video is on left side.. and doesnt come in center like other images…even after aligning it in center in product description.. tell me what can i do.
Hi, please try to update the previous code to this
.ProductMeta__Description .VideoWrapper {
overflow: unset;
height: 560px
}
.ProductMeta__Description .VideoWrapper iframe {
width: 300px;
height: 560px;
left: 50%;
transform: translate(-50%, 0px);
}
Thankyouu…autoplay is also not working when i am adding autoplay code in html…can you also tell that how to do this.. so that i will apply combine code in custom CSS for both of my problem …can you also help with this?