A space to discuss online store customization, theme development, and Liquid templating.
I used javascript with custom liquid to insert videos under each of my products but they are not responsible for mobile... How would I do it? Eg.: https://www.zanski.co/products/csiptetos-kereszt-fulbevalo
Thanks ❤️
Solved! Go to the solution
This is an accepted solution.
Hello @Zanski ,
It's GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow steps below:
1. Go to Online Store > Theme > Edit code of your current theme
2. Open your theme.liquid theme file
3. Paste the below code before </head>
<style>
.shopify-section iframe {
max-width: 100%;
}
</style>
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
This is an accepted solution.
Hello @Zanski ,
It's GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow steps below:
1. Go to Online Store > Theme > Edit code of your current theme
2. Open your theme.liquid theme file
3. Paste the below code before </head>
<style>
.shopify-section iframe {
max-width: 100%;
}
</style>
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
I used this to make it more beautiful but in general you were right, thank you! ❤️
<style>
.shopify-section iframe {
max-width: 90%;
aspect-ratio: 16/9;
height: auto;
}
</style>
I am so glad that my solution can help.
Best regards,
GemPages Support Team