Tagged: Fullwidth Easy Slider
Hi, could you tell me how I can remove the display of the Fullwidth Easy Slider on a mobile device only?
Also, a side question, how can I force the height of the Fullwidth Easy Slider on mobile only.
Thanks!
Hi,
Can you post the link to your website please?
Regards,
Josue
Removing the captions on mobile could do the trick too:
@media only screen and (max-width: 767px) {
div.slideshow_caption {
display: none;
}
}
Best regards,
Josue
Thanks Josue, that works somewhat, might be a little confusing for the end-user though as its just scrolls three random images.
Can you tell me is there a way to stop the scrolling and just show the initial image only (no dots or arrows either)?
You could do the following: put the first slide as a background image in a separate color section (with an ID of mobileimage), then add this to the Quick CSS:
@media only screen and (max-width: 767px) {
#mobileimage{ display: block; }
#full_slider_1{ display: none; }
}
@media only screen and (min-width: 767px) {
#mobileimage{ display: none; }
}
So, now in smaller screens the mobileimage section will appear and the slideshow will disappear.
Best regards,
Josue