Hello!
I am attempting to upload a video to a page of my website that doesn’t support cornerstone and cannot seem to find a way to remove the download option from my video without getting rid of the other playback options.
I have been trying to fix this for quite a while now, and so far have tried:
- Manually creating the video in HTML using the following code snippet:
- Inserting this CSS into the global CSS on the X theme:
video::-internal-media-controls-download-button {
display:none;
}
video::-webkit-media-controls-enclosure {
overflow:hidden;
}
video::-webkit-media-controls-panel {
width: calc(100% + 30px); /* Adjust as needed */
}
- I realised I could change the settings when I was editing inside the cornerstone editor, however I need to insert my video into a topic in learnpress, which doesn’t support cornerstone.
Any help would be greatly appreciated!