Reputation:
Right, I'm working on a site for a friend, and I'm trying to get a carousel working. However, seemingly, no matter what I try.
Markup: http://pastebin.com/PjftpnJx
Folder structure:
The Owl CSS files had their extension changed to .less and are included inside the main LESS file which I compile into CSS, which means that the files are there.
Upvotes: 1
Views: 31741
Reputation: 2290
Found your problem, you won't believe how simple. You just forgot to include the Owl Carousel stylesheet
<link rel="stylesheet" href="owl-carousel/owl.carousel.css">
<link rel="stylesheet" href="owl-carousel/owl.theme.css">
Edit: the problem is jQuery version, not working with 10.2, downgrade to 10.1 works.
Upvotes: 7
Reputation: 11
I had the same problem with OWL Carousel not working on IE and Chrome.
I've fixed it by replace the old version with the newest : http://www.owlcarousel.owlgraphic.com/index.html
Now, Prev/Next buttons, Scroll-Drag and Auto-advance work on IE and Chrome.
Upvotes: 1