pointer-events: none;
) in Webflow’s Page Settings to disable video interactions.By default, Webflow does not provide a built-in setting to disable video downloads on mobile. However, you can apply CSS to prevent users from saving the video.
Go to Designer > Page Settings > Custom Code (before </head>
or </body>
).
Insert the following inline CSS:
```css
```
This prevents users from long-pressing and downloading the video.
To prevent video downloads on mobile, use CSS pointer-events, add an overlay DIV, or host on a secure streaming platform. Keep in mind that no method is 100% secure, as users can still screen-record videos.