Anyone know how to make the size of video smaller on the homepage for dawn theme

Solved
Ecomowner
Excursionist
16 3 1

I"m looking to make a video on my homepage smaller and not take up so much space on the homepage. Can someone help me with this

 

 

video sizing.jpg

Accepted Solution (1)
Ecomowner
Excursionist
16 3 1

This is an accepted solution.

Replies 4 (4)
pierrewebdev
Shopify Partner
27 1 5

I could take a look and see if I can get it smaller using some CSS.

Can you post a link to your Shopify store

Check out my Shopify Content on the Code That Converts YouTube Channel
If you need Shopify Help send me an email at patrick@codethatconverts.com
Ecomowner
Excursionist
16 3 1

my website is 

Xpressavenue.com

the pw is Shopify2023

pierrewebdev
Shopify Partner
27 1 5

Hey I managed to make it much smaller by inputting this custom css below.
You can input it as custom css in the section used for this video.

 

 

deferred-media{
  --ratio-percent: 50%;
}

deferred-media img{
  width: auto !important;
  max-width: 100% !important;
  height: 100% !important;
  display: inline;
  position: static;
}

 

 

 

If you want to make it even smaller you just need to make the percentage assigned to --ratio-percent smaller than 50%. Please let me know if that helps.

Check out my Shopify Content on the Code That Converts YouTube Channel
If you need Shopify Help send me an email at patrick@codethatconverts.com
Ecomowner
Excursionist
16 3 1

This is an accepted solution.

thanks