Hi, on my website when the homepage Easy Slider element is viewed on a Smartphone the left and right arrows and slide circles cover much of the slides themselves making them impossible to read.
Is there a way to turn them off on mobile devices only or completely?
Thanks
Hey!
Try adding this code to the Quick CSS:
@media only screen and (max-width: 480px) {
.avia-slideshow{
display: none;
}
}
Cheers!
Josue
Hi Josue, thanks for your reply, that code removes the slider completely on a smartphone, what I want to know is can I keep the slider but remove the navigational overlays when displayed on a screen less than 480px?
Hey!
Please add following code to Quick CSS instead
@media only screen and (max-width: 480px) {
.avia-slideshow-controls {
display: none!important;
}}
Regards,
Yigit
Hi Yigit, that worked perfectly, you may close this thread, thank you