Hi, in the home 3, in the mobile version, it's very hard to scroll the page. Is it this normal?
This is the site preview www.irenealbini.it/index.php (please test from phone and try to scroll the home page using the finger)
Thanks in advance.

    Hi multimediavda,
    You can disable the swipe on mobile, Open the file: /acm/horizontal-projects/tmpl/style-1.php. and override with the code:

    <script>
      if (window.innerWidth > 767) {
        var swiper = new Swiper(".swiper-wrapper-<?php echo $module->id ;?>", {
          slidesPerView: "auto",
          direction: 'horizontal',
          spaceBetween: 0,
          freeMode: true,
          mousewheel: true,
          parallax:true,
          speed: 5400,
          pagination: {
            el: ".swiper-pagination",
            type: "progressbar",
          },
          breakpoints: {
            0: {
              direction: 'verticle',
            },
            767: {
              direction: 'horizontal',
            }
          },
          
        });
      };
    </script>
    Write a Reply...
    You need to Login to view replies.