Shopify themes, liquid, logos, and UX
i want to embed app in my shopify theme but its showing some error and i want to add youtube video in my website is it possible by code.
Solved! Go to the solution
This is an accepted solution.
Hi @sahilkochhar1,
Go to Online Store > Themes > Customize > Add Custom Liquid Section and paste the code.
<div id="yt-iframe-container">
<iframe width="560" height="315"
src="https://www.youtube.com/embed/YOUR_VIDEO_ID"
frameborder="0" allowfullscreen>
</iframe>
</div>
<style>
#yt-iframe-container {
display: flex;
margin: 20px 0;
justify-content: center;
}
#yt-iframe-container iframe {
width: 50vw;
height: 50vh;
}
@media (max-width: 600px) {
#yt-iframe-container iframe {
width: calc(100% - 20px);
padding: 0 10px;
}
}
</style>
This is an accepted solution.
Hi @sahilkochhar1,
Go to Online Store > Themes > Customize > Add Custom Liquid Section and paste the code.
<div id="yt-iframe-container">
<iframe width="560" height="315"
src="https://www.youtube.com/embed/YOUR_VIDEO_ID"
frameborder="0" allowfullscreen>
</iframe>
</div>
<style>
#yt-iframe-container {
display: flex;
margin: 20px 0;
justify-content: center;
}
#yt-iframe-container iframe {
width: 50vw;
height: 50vh;
}
@media (max-width: 600px) {
#yt-iframe-container iframe {
width: calc(100% - 20px);
padding: 0 10px;
}
}
</style>
In my theme there is no option for custom liquid section
June brought summer energy to our community. Members jumped in with solutions, clicked ...
By JasonH Jun 5, 2025Learn how to build powerful custom workflows in Shopify Flow with expert guidance from ...
By Jacqui May 7, 2025Did You Know? May is named after Maia, the Roman goddess of growth and flourishing! ...
By JasonH May 2, 2025