Hello,
Can I hide the full screen slider “easyslider” from the home page on mobile and tablets via the style.css file? if so what code do I insert!
Please!
– Is it possible to have a different slider on mobile, tablet and desktop. If I make a request here: https://kriesi.at/support/topic/enfold-feature-requests/ . Or this feature is not feasible !?
Thanks!
Hey!
It’s possible, enable this, create two sliders and set a different class to each one (lets say mobile_slider and desktop_slider). Then add something like this to the Quick CSS:
.mobile_slider{
display: none;
}
@media only screen and (max-width: 767px) {
.mobile_slider{
display: block;
}
.desktop_slider{
display: none;
}
}
Regards,
Josue
Thank you Josue !
it works but the “next section” button no longer works on the desktop
Hi!
Can you post a link to your website please which enables us to investigate the css code of the “next section” button?
Regards,
Peter
Hey!
Change the order of the elements this way:
Best regards,
Josue
Hey!
Yes it works! Thank you
You are welcome, always glad to help :)
Regards,
Josue