Tagged: LayerSlider
Hi guys,
Is there a quick css way to disable all layers used in the LayerSlider WP, when using the site on a mobile?
Thanks
BR
Jeff
Hey Jeff!
Please go to LayerSlider WP > choose your slider > Slider Settings > Layout > Other Settings and choose to hide your slider on mobile – http://i.imgur.com/TVywg07.png
Cheers!
Yigit
Hi Yigit,
But that disables the complete slider, right? I want just the layers (text) to be hidden, not the slide image
BR
Jeff
Hi,
Not sure if that would be possible but send us a link to the site in question and we’ll have a look.
Regards,
Rikard
Any news if it is possible?
Hi!
Layer slider layers, do have different classes per element.
You can edit it and hide with some media queries
Let us know if that is helpful for you
Best regards,
Basilis
So not possible? I have to give all layers a attribute ID and disable it in css like that?
Hey!
It is possible but you have to find a way to identify the layers and one way is to add the attribute Class or ID. In the Attributes > Classes field, add “only_desktop” for example then add this in the Quick CSS field:
@media only screen and (max-width: 767px) {
.only_desktop { display: none !important; }
}
Regards,
Ismael