Hi, when I add this code on "custom HTML" for my homepage video :
<p><video muted="muted" autoplay="autoplay" loop="loop" playsinline="" width="100%">
<source src="VIDEO URL" type="video/mp4"></source>
</video></p>
the video appears less wide than normal. Please help me. Thanks
Solved! Go to the solution
Hi @Vector1, do you know if the containing element for the custom html is the width that you want your video to be, or is it smaller? Also, I wouldn't wrap that video in a <p>, I would wrap it in a <div>.
<div>
<video muted="muted" autoplay="autoplay" loop="loop" playsinline="" width="100%">
<source src="VIDEO URL" type="video/mp4"></source>
</video>
</div>
Hi @kenput3r , thanks for your reply. The video is smaller than normal. I replace with your code but unfortunately the problem isn't solved.
User | Count |
---|---|
26 | |
18 | |
14 | |
13 | |
13 |