Need to display one version of a full-width easy slider for desktop which is hidden on mobile and a mobile full-width slider which is hidden on desktops.
Would adding the following CSS do the trick?
#full_slider_2{ display: none; }
@media only screen and (max-width: 479px) {
#full_slider_2 { display: block !important; }
}
@media only screen and (max-width: 767px) {
#full_slider_1 { display: none; }}
Please let me know!
Cheers
Hi IconicD!
Yes, that would help. Also, you can refer to this post – http://kriesi.at/documentation/enfold/hide-menu-itemselements-on-mobile/ and give elements you would like to hide/display on certain devices a custom class so it would be easier to target them.
Regards,
Yigit