0

Please, look for a way to hide a carousel script from displaying for screens with dimensions such as : 340x360 . here the script : http://owlgraphic.com/owlcarousel/#customizing

Thanks in advance

1 Answers1

0

updated:

Use CSS media query

@media (max-width: 360px) {
   #slider_wrapper {
      display: none;
   }
}
cyadvert
  • 855
  • 7
  • 19