How can I center a video in Custom Liquid Dawn?

How can I center a video in Custom Liquid Dawn?

bennyccox
Visitor
1 0 1

I have resized the video, but it shifts to the left. I am trying to center the video. Custom Liquid is as follows:

 

<video class="video-background" loop="" muted="" no-controls="" autoplay="" src="https://cdn.shopify.com/videos/c/o/v/b905c805b3914090b6a2a301b5a347b2.mp4?v=1648681029" playsinline="" style="transform: scale(1.0, 1.0);">
<source type="video/mp4" src="">
</source></video>

<style>
.video-background {
width: 60%;
padding-top: 0px;
opacity: 1.0;
height: 100%;
left: 0;
top: 0;
<center>}


</style>

Replies 3 (3)

KetanKumar
Shopify Partner
37598 3668 12156

@bennyccox 

Sorry you are facing this issue, it would be my pleasure to help you.

Welcome to the Shopify community!😊
Thanks for your good question.

Please share your site URL,
I will check out the issue and provide you a solution here.

 

If helpful then please Like and Accept Solution. Partnership of your ️ Coffee Tips and my code can bring miracles.
Want to modify or custom changes on store Hire Me.
- Feel free to contact me on bamaniyaketan.sky@gmail.com regarding any help Shopify Partner | Skype : bamaniya.sky
PSD to Shopify | Shopify Design Changes | Shopify Custom Theme Development and Desing | Custom Modifications In to Shopify Theme | SEO & Digital Marketing

LitCommerce
Astronaut
2860 684 760

Hi @bennyccox,

Please change all code:

<video class="video-background" loop="" muted="" no-controls="" autoplay="" src="https://cdn.shopify.com/videos/c/o/v/b905c805b3914090b6a2a301b5a347b2.mp4?v=1648681029" playsinline="" style="transform: scale(1.0, 1.0);">
<source type="video/mp4" src="">
</source></video>

<style>
.section-{{ section.id }}-padding {
  text-align: center;
}
.video-background {
  width: 60%;
  padding-top: 0px;
  opacity: 1.0;
  height: 100%;
  left: 0;
  top: 0;
}
</style>

it will display fine

LitCommerce - The Most Simple & Affordable Multi-channel Selling Tool.
Effortlessly sell on biggest marketplaces like Amazon, Etsy, eBay, Facebook etc with bulk listing tool, real-time sync & smart order management. Use LitCommerce free for 1-year now!
WalnutApple
Visitor
1 0 0

out of all the solutions, this is the only one that worked for me in dawn 10 when inserting custom liquid, thank you!