What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: I need help with custom video section in product page (Dawn Theme)

Solved

I need help with custom video section in product page (Dawn Theme)

TheLivingCo
Explorer
87 0 17

I need help with custom video section in product page (Dawn Theme). I need this video inside frame of 16:9 with empty space as black.

 

PFA below

 

video section.png

The Living Co.
Accepted Solution (1)

samirinterlink
Shopify Partner
10 2 0

This is an accepted solution.

remove old css of .responsive-video you just add is css

.responsive-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%;
    background-color: black;
    margin: 0 auto;
}
.responsive-video > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

 

Screenshot (207).png

 

View solution in original post

Reply 1 (1)

samirinterlink
Shopify Partner
10 2 0

This is an accepted solution.

remove old css of .responsive-video you just add is css

.responsive-video {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 0;
    padding-bottom: 56.25%;
    background-color: black;
    margin: 0 auto;
}
.responsive-video > video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

 

Screenshot (207).png