Home Forums WoodMart support forum mobile photo swipe issue Reply To: mobile photo swipe issue

#509555

Bogdan Donovan
Keymaster

Hi,

Try to add the following code snippet to the Custom CSS area in Theme Settings to prevent vertical scroll during horizontal swipe via CSS:

.owl-carousel {
	touch-action: pan-y;
}

This fix will improve horizontal swipe, but vertical scrolling may still be present if purposely trying to cause this situation. You can also count this fix as the temporal solution since in the next theme update we will migrate from “owl-carousel” JS library to “swiper” which will bring better mobile performance alongside with other benefits like a new slider options, layouts, and navigation styles.

Kind Regards