Hi guys,
I added the SVG MIME support in wordpress to be able to upload them. But when I import them as an image in the gridder it just does nothing (grays out the screen until I click somewhere else). I was wondering if we could get SVG support in the gridder ?
And while I'm at it, I never dared to ask for multiple source support for video format, especially webm because of the high quality you can get with so lightweight files. Always included the mp4 as a fallback (because it works on every broswer).
The holy graal would be to also support multiple video resolutions just as with images, but this might be an overkill feature to ask for.
<video controls>
<source src="video-small.mp4" type="video/mp4" media="all and (max-width: 480px)">
<source src="video-small.webm" type="video/webm" media="all and (max-width: 480px)">
<source src="video.mp4" type="video/mp4">
<source src="video.webm" type="video/webm">
</video>