Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Stefan Boonstra

    (@stefanboonstra)

    Hi,

    You could probably simply hide the slideshow using CSS media queries. The following CSS media query hides all slideshows when the screen gets smaller than 500 pixels:

    @media all and (max-width: 500px) {
      .slideshow_container {
    	  display: none;
      }
    }

    For detailed information on CSS media queries, have a look at this article.

    Best regards,
    Stefan

    Thread Starter wakan84

    (@wakan84)

    Thank you very much… it’s ok

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘responsive’ is closed to new replies.