how to center video with custom css and load muted

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?

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.


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

1 Like

the muted code worked, thank you!

but how would you integrate this code?

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

into this?

Can you share your store url?