How to make video banner smaller

How to make video banner smaller

platinumlabel
Visitor
1 0 1

Hello! I am using the Dawn theme and have a video banner that I used custom coding to create on a loop. I would like to make the width and height smaller as to not take up the whole screen. My website is www.platinumlabelhair.com

Here is the coding:

<style>
video {
width: 80%;
height: 40;
display: block;
margin: 0 auto;
}
</style>
<video muted autoplay playsinline loop>
<source src="https://cdn.shopify.com/videos/c/o/v/912356a9dbdd437fb7b23230e088033e.mp4"
type="video/mp4">
<source src="https://cdn.shopify.com/videos/c/o/v/14aabe251d3f4a0c8acbc758ef546e9b.mp4"
type="video/mp4">
</video>

Replies 3 (3)

Ellie-BOGOS
Trailblazer
137 14 21

Hi @platinumlabel

 

This is Ellie from BOGOS (formally Free Gifts by Secomapp), # 1 Promotion App on Shopify featuring Free Gift, Discounts & Bundles

 

To change the video banner size, you just need to adjust the width and height percentages to be smaller. For example:

 

width: 60%;

height: 40%;

 

If my answer is helpful, I would appreciate it if you could give me a Like or accept it as a Solution! 😁

Wish you all the best with the business,

Ellie

BOGOS (formally Free Gifts by Secomapp)

If it is helpful, let me know by giving a Like or Accept solution.
Use BOGOS.io Free gift to create special promotions: BOGO, gift with purchase, product bundles, quantity breaks on your store!
Have a nice day ^_^

goldi1
Excursionist
92 7 19

Hello @platinumlabel 

you need like this 

download (3).png

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639

goldi1
Excursionist
92 7 19

Hello @platinumlabel 

replace your code with this correct code 

 

video {
    display: block;
    max-height: 748px;
    margin: 0px auto;
}

here is one more modified code u can use this if first one is not working 

here is the code 

	video {
	 display: block;
    max-height: 650px;
    object-fit: none;
    width: 80%;
    margin: 0 auto;
}

thanks

 

 

 

Was I helpful?

Buy me a coffee



Want to modify or custom changes or bug fix on store . Or Need help with your store? Or -Want Complete Storefront
Email me -rahul@prowebcoder.com - Skype: live:dhiman.639