Hi all. Is there a way of specifying a different slider image when viewing on mobile? The usual HTML approach to this would be something like:
<picture>
<source srcset="image-mobile.jpg" media="(max-width: 767.98px)">
<img src="image-desktop.jpg">
</picture>
Can I use custom CSS for this, and what would that be please?
Many thanks