user3210253
user3210253

Reputation:

Owl Carousel not working at all

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:

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

Answers (2)

Godinall
Godinall

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">

Working Demo Here

Edit: the problem is jQuery version, not working with 10.2, downgrade to 10.1 works.

Upvotes: 7

Pierre-Henri
Pierre-Henri

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

Related Questions