0

i want to use owl carousel sync with RTL direction but not working

i wrote following style to fixed this problem bug my sync owl carousel not working :

.owl-carousel .owl-item{
   float: right !important;
}

what to do now?

UninformedUser
  • 8,397
  • 1
  • 14
  • 23
Omid Nikrah
  • 2,444
  • 3
  • 15
  • 30

1 Answers1

0

Try rtl: true

$('.owl-carousel').owlCarousel({
    rtl:true,
    loop:true,
    margin:10,
    nav:true,
    responsive:{
        0:{
        items:1
    },
    600:{
        items:3
    },
    1000:{
        items:5
    }
}
})
sk786
  • 394
  • 1
  • 4
  • 21