Re: how to center video with custom css and load muted

Solved

how to center video with custom css and load muted

Kari_M
Tourist
9 2 3

can anyone tell me how to center a video I have on my site with custom css. it is currently aligning to the left of the screen.

 

Also, is there a way to load it muted?

 

<video controls="controls" style="max-width: 100%; height: auto;">
<source src="my url" type="video/mp4" />
Your browser does not support our video.
</video>

Accepted Solution (1)
Kari_M
Tourist
9 2 3

This is an accepted solution.

the muted code worked, thank you!

 

but how would you integrate this code?

 

.container-div { text-align: center; } video{ margin: 0 auto; }

 

into this?

 

<video controls="controls" style="max-width: 100%; height: auto;">
<source src="my url" type="video/mp4" />
Your browser does not support our video.
</video>

View solution in original post

Replies 3 (3)

AnneLuo
Shopify Partner
1370 238 279

Hi, @Kari_M 

You need to change the css of the container div.

 

.container-div {
  text-align: center;
}
video{
  margin: 0 auto;
}

For loading it muted, you should add the muted attribute for the video, like this.

<video controls="controls" muted style="max-width: 100%; height: auto;">
<source src="my url" type="video/mp4" />
Your browser does not support our video.
</video>

 

Hopefully it will help you. If yes then Please don't forget hit Like and Mark it as solution!

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee

Kari_M
Tourist
9 2 3

This is an accepted solution.

the muted code worked, thank you!

 

but how would you integrate this code?

 

.container-div { text-align: center; } video{ margin: 0 auto; }

 

into this?

 

<video controls="controls" style="max-width: 100%; height: auto;">
<source src="my url" type="video/mp4" />
Your browser does not support our video.
</video>

AnneLuo
Shopify Partner
1370 238 279

Can you share your store url?

If this is helpful, please Like and Accept the solution.
Want to modify or custom changes on store? Let me help.
- Feel free to Email Me   

Buy Me A Coffee