Solved
Resize video to fit screen (e.g. mobile phone)
Hello everyone,
Is it possible to resize videos (from file library, not YouTube) to fit the screen of the device respondents are using? Currently, when viewed from a mobile phone, the size of the video is too large and will be cutoff. It only fits the screen when viewed in fullscreen mode. Thanks in advance.
Best answer by TomG
You can check what type of device you have and set an embedded variable for the width, then pipe it into the html5 `<video>` tag.
```
<video id="myVid" controls="controls" autoplay="autoplay" width="${e://Field/vid_width}">
<source src="https://mydomain.com/myVid.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
```
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
