Viewing 2 reply threads
You must be logged in to reply to this topic.
Hi, I use a YouTube video slider via Slider Revolution for non-mobile devices. On mobile devices a static image is displayed. Is there a way to create an image slider that will work on mobile while retaining the video slider for non-mobile?
Thank you
Hello,
This is not possible by theme’s default options.
But a workaround to have this is to add a second slider in your page. Use the display:none;
css property to show and hide them according to the device screen size.
Example:
.second_slider_id {display:none;}
@media (max-width: 480px){
.video_slider_id {display:none;}
}
Replace the slider’s id with your own. Let us know.
Best regards!
You must be logged in to reply to this topic.