Hi,
Can I instead of displaying a slideshow just use 1 static picture. Right now I have 1 picture in the slideshow however you can swipe it with the mouse. I basically want to remove the ability to swipe.
Thx
Sam
Hi sampardon
Edit this file /templates/ja_fit/acm/slideshow/tmpl/style-owl.php
change loop:true,
to
loop:false,
This fixes the problem only partly. The picture doesn't loop anymore but I am still able to "grab" it with my mouse and drag it. I want to completely remove the ability to drag the picture.
sampardon Hi After loop:false line add this code
touchDrag : false, mouseDrag : false,
let me know if it helps.
Yes that worked. Only one small thing now. The cursor is not the standard icon but instead it still looks like this:
Is it possible to instead have the standard cursor?
sampardon Hi Add this code in custom.css file
.acm-slideshow .owl-carousel { cursor: default!important;}
Regards