bcdiesel wrote:Please add the ability to select whether a slider can be desktop only/mobile only/both. This would be awesome as sliders designed for desktop views can be difficult to see on a mobile screen.
Cheers
Hi,
Please submit your idea in our
UserVoice portal so that other people can vote for it.
In the meantime, you can workaround this by creating 2 sliders. Set a "Theme class name" for the first one to be "desktop" and "mobile" for the second one. Then with CSS and appropriate media queries you can easily show/hide the sliders for certain resolutions e.g:
@media all and (min-width: 1281px) {
.theme-desktop {
display: block;
}
}
Hope this helps!