Here is my code:
$('.carousel-services').owlCarousel({
loop: true, nav: true, navText: ['<i class="fa fa-angle-double-left"></i>', '<i class="fa fa-angle-double-right"></i>'], smartSpeed: 700, reponsiveClass: true, dots: false, responsive: { 0: { items: 1 }, 800: { items: 2 }, 1100: { items: 3 } }});
Nav - true, but html adds the class - disabled
Can you paste the HTML too? I know that if the number of slides visible is less than or equal to the number of unique slides (e.g. you have 3 slides, disregarding clones, and set 'items' to '3' or more) then the navigation is not shown - I assume because there is nothing to navigate to.
Try putting in more slides and seeing if that fixes the issue
Yes you are right.
Added additional slide - owl nav buttons appeared...
I am new in Owl-carousel but when using loop:true, owl-nav supposed to be shown every time regardless of amount of unique items. Isn't that true?
Most helpful comment
Can you paste the HTML too? I know that if the number of slides visible is less than or equal to the number of unique slides (e.g. you have 3 slides, disregarding clones, and set 'items' to '3' or more) then the navigation is not shown - I assume because there is nothing to navigate to.
Try putting in more slides and seeing if that fixes the issue