Okay
  Print

How to hide the slider's caption on mobile devices?

1. Go to "Style Customizer > Others > Custom CSS"

2. Enter this custom CSS into the box:

@media only screen and (max-width: 767px) {
    .slide-caption-wrapper {
        display: none;
    }
}

This code will force to hide both caption title and text on mobile devices (resolution width lower than 767px).