drake035
drake035

Reputation: 2897

Owl Carousel displays more items than instructed

Despite specifying one item when calling it on my page (password: "shooga1", pick a language then visit the same link again):

$('#page-lookbook-single-carousel').owlCarousel({
    items: 1, 
    navigation: true 
});

Owl Carousel jQuery plugin displays more than one item at certain smartphone/tablet resolutions (please reduce browser window width to see in action). In this case it breaks the layout completely.

How to enforce the instruction of 1 item only at all resolutions ?

Upvotes: 0

Views: 716

Answers (1)

phts
phts

Reputation: 3925

Try to use option singleItem: true - http://owlgraphic.com/owlcarousel/demos/one.html

Upvotes: 1

Related Questions