Adjust the size of content container

Hello,

I added a video to one of my posts. It looks okay on mobile but on the desktop, the video container looks pretty huge.
Is there a way to adjust the size of this container to make it look smaller? Ideally,I would want the video container to be 400px wide and 400px height.

Thank you

Hello Rashmi,

Thanks for writing in!

Are you referring to this video?

If you have inserted the video using a shortcode or link, you can simply wrap it with a container like this:

<div class="my-video">
// your video here
</div>

And then please add the following CSS code in the X > Theme Options > Global CSS (http://prntscr.com/evui3r)

.my-video {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

We would love to know if this has worked for you. Thank you.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.