How can I resize a video to 50% of its current height on Flex theme?

Solved

How can I resize a video to 50% of its current height on Flex theme?

alek1986
Shopify Partner
27 1 13

Hi,

 

Im trying to change the height of this video to 50% of its current size. Is currently showing the whole screen.

 

When I try to change in the current class, it doesnt change it or its crooked.

 

The website is mariloushop.com, the video is in the middle of the homepage. the theme is Flex.

 

Any help appreciated

 

Thank youScreen Shot 2021-11-23 at 10.37.57 AM.png

 

#shopify-section-1606568105b2fab6f7 { padding-top: 15px; padding-bottom: 5px; padding-left: 0px; padding-right: 0px; width: 100%; }

Accepted Solution (1)
Ranaay
Tourist
7 2 7

This is an accepted solution.

Aah, I misread the question. 

 

Try...

 

height: 50vh;

overflow:hidden;

View solution in original post

Replies 4 (4)

Ranaay
Tourist
7 2 7

Try...

 

#shopify-section-1606568105b2fab6f7 { padding:0 25%; width: 100%; }

 

The 0 is the Top and Bottom padding.

The 25% is the Left and Right sides of the video.

alek1986
Shopify Partner
27 1 13

Thank you!

 

Unfortunately that didn't work @Ranaay 

Ranaay
Tourist
7 2 7

This is an accepted solution.

Aah, I misread the question. 

 

Try...

 

height: 50vh;

overflow:hidden;

alek1986
Shopify Partner
27 1 13

Thank you!

 

That worked!