hi,
How can I hide the slide on the mobile
thanks
Hi web-mat!
Can you please post the link to your website and point out the slider you would like to hide on mobile?
Best regards,
Yigit
Hey!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 480px) {
.home .avia-slideshow-1 {
display: none;
}}
Alternatively, you can turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your element a custom class and use the code as following
@media only screen and (max-width: 480px) {
.your-custom-class { display: none !important; }}
or you can add your slider inside a color section element with a unique ID – http://kriesi.at/documentation/enfold/wp-content/uploads/sites/2/2013/12/color-section-ID.png and then use the code as
@media only screen and (max-width: 480px) {
#your-custom-id { display: none !important; }}
Best regards,
Yigit
perfect !!
thank you.
sorry for the late reply.
M ark