I have a problem with an owl carousel. I have 10 items in an owl, in a loop, and after the 10th item, there is another extra element. How can I get rid of this last empty element?
Here is my js code for owl:
<script type="text/javascript">
$(document).ready(function() {
$("#owl-example").owlCarousel({
navigation : false,
pagination : false,
loop : true,
autoplay : false,
slideSpeed : 300,
paginationSpeed : 400,
items : 1 }); });
</script>
source
share