I'd like to put a video on an XF page. I like it to be responsive to both mobile and desktop computers.
I tried something like this but the video does not zoom down in the mobile device.
Obviously, I need to wrap the video in the the correct media wrapper class so it will be minimized properly.
I tried something like this but the video does not zoom down in the mobile device.
Obviously, I need to wrap the video in the the correct media wrapper class so it will be minimized properly.
Code:
<div class="messageText ugc baseHtml" style="text-align:center;">
<video controls="" data-xf-init="video-init" width="480" poster="cover.png">
<source src="video.mp4">
</video>
</div>