Hello,
Apologies about the Inconveniences caused!
Please find the following code in the HTML File:
<script>
// Owl Carousel Scripts
$('#oc-features').owlCarousel({
items: 1,
margin: 60,
nav: true,
navText: ['<i class="icon-line-arrow-left"></i>','<i class="icon-line-arrow-right"></i>'],
dots: false,
stagePadding: 30,
responsive:{
768: { items: 2 },
1200: { stagePadding: 200 }
},
});
</script>
and replace it with the following code:
<script>
// Owl Carousel Scripts
$('#oc-features').owlCarousel({
items: 1,
margin: 60,
nav: true,
navText: ['<i class="icon-line-arrow-left"></i>','<i class="icon-line-arrow-right"></i>'],
dots: false,
stagePadding: 30,
responsive:{
768: { items: 2 },
1200: { stagePadding: 200 }
},
autoplay: true,
autoplayTimeout: 5000,
autoplayHoverPause: true
});
</script>
This will definitely work fine. Hope this Helps!
Let us know if we can help you with anything else or if you find any further issues.