Home Forums Theme support Disable Allslider in Dreamy Hotel theme Reply To: Disable Allslider in Dreamy Hotel theme

Hi,

you can add this CSS code to the end of your style.css file:

@media only screen and (max-width: 767px) {
#cycle_container {
display:none !important;
}
}

This should do the job.