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
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
updated:
Use CSS media query
@media (max-width: 360px) {
#slider_wrapper {
display: none;
}
}