【Slim】I can’t crawl on iPad / iPhone

I created a website using [Slim] .
I have a trouble that I can’t crawl first view on iPad / iPhone.
I can see below with the menu button.
How can i solve it?

Hey there

It can be fixed by adding this css code:

.owl-carousel.owl-drag .owl-item {
-ms-touch-action: initial;
touch-action: initial;
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
user-select: initial;
}

Or simply modify it in this file: slim/css/owl.carousel.min.css

2 Likes

Dear colorlibsupport

Thanks!
I was able to solve this problem with the code you taught and “overflow-scrolling:auto;”!!

1 Like