How to add Youtube video on website

How to add Youtube video on website

sahilkochhar1
Tourist
6 0 6

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.

Replies 2 (2)

CodingFifty
Shopify Partner
901 134 164

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>

 

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
sahilkochhar1
Tourist
6 0 6

In my theme there is no option for custom liquid section

 

sahilkochhar1_0-1739623213845.png