Viewing 1 replies (of 1 total)
  • Plugin Author subhansanjaya

    (@subhansanjaya)

    You could use media query to activate specific code at certain screen size and the visibility:hidden attribute to hide the element. You could copy and paste the following code to your css file. So, when the screen reaches to specified size then the div which contain carousel will become hidden.

    I hope this helps. If you like the plugin, I appreciate it if you could give it a rate. Thanks.

    @media screen and (max-width: 600px) {
      .chpcs_image_carousel {
        visibility: hidden;
      }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Disable on mobile’ is closed to new replies.