Home Forums Theme support Disable Allslider in Strong theme Reply To: Disable Allslider in Strong 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.