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

    (@subhansanjaya)

    @joris van der Horst I’m not sure if this is a plugin specific issue. There are many support threads you can find, if you search on how to hide a div tag on mobile view.

    If you are familiar with CSS, you could use media queries to activate the specific code at a certain screen size. Then you can use visibility: hidden attribute to hide the div. There is an option on the settings page of the plugin where you can add any custom styles without editing the files. I hope this helps you.

    @media screen and (max-width: 480px) {
      .chpcs_image_carousel{
        visibility: hidden;
        display: none;
      }
    }
Viewing 1 replies (of 1 total)
  • The topic ‘How slider NOT appear/show only on mobile (smart)phones’ is closed to new replies.