I'm a novice and I'm trying to create a carousel gallery on a website.
I've been trying to get owlcarousel to work for a while now. I've read numerous posts and how to's but I just don't understand what I'm doing wrong.
The website is http://www.vicandross.com/victoriaaustin
and the code is
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Victoria Austin</title>
<head>
<link rel="stylesheet" type="text/css" href="_ui/css/screen.css"></link>
<link rel="icon" type="image/png" href="http://vicandross.com/_ui/images/vricon.png"></link>
<link rel="stylesheet" href="/owl-carousel/owl.carousel.css"></link>
<link rel="stylesheet" href="/owl-carousel/owl.theme.css"></link>
</head>
<body>
<div class="logo_row" style="background:#ffdacf;padding:0">
<div style="width:996px;text-align:center;margin:0 auto;background:#ffdacf;padding:20px 0">
<a href="/">
<img alt="victoria austin" src="http://www.vicandross.com/victoriaaustin/_ui/image/logo.png">
</img>
</a>
</div>
</div>
<div id="owl-example" class="owl-carousel">
<div> <img src="http://www.vicandross.com/victoriaaustin/_ui/images/logo.png"></img></div>
<div> <img src="http://www.vicandross.com/victoriaaustin/_ui/images/cookies3.jpg"></img></div>
</div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1 /jquery.min.js"></script>
<script type="text/javascript" src="/owl-carousel/owl.carousel.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#owl-example").owlCarousel();
items: 1,
loop: true,
margin: 10,
lazyLoad: true,
merge: true,
video: true,
responsive:{
480:{
items:2
},
678:{
items:3
},
960:{
items:5
}
}
});
</script>
</body>
</html>
I would really appreciate someones advice.
Thank you
/owl-carousel/owl.carousel.jsthrows 404. Please provide more details. Where is this file on your disk relatively to your script? Are you doing some rewrites on HTTP server?