Skip to main content

Reply to "Add an Image Carousel or Slider to Crowdstack"

Hi! I've been trying to get the carousel running but it just comes up static.  

<!DOCTYPE html>
<html>
<head>

<style>
.pc-events {
width: 40%;
margin: auto;
}

.slick-next.slick-arrow::before {color: #000000; background-color: #cccccc; border-radius: 3px 3px 3px 3px ;}
.slick-prev.slick-arrow::before {color: #000000; background-color: #cccccc; border-radius: 3px 3px 3px 3px ;}

</style>

<link rel="stylesheet" type="text/css" href="https://www.pacesconnection.com/ws/slick.css"/>
<link rel="stylesheet" type="text/css" href="https://www.pacesconnection.com/ws/slick-theme.css"/>


</head>
<body>



<div class="pc-events">
<div><img src="https://www.pacesconnection.com/ws/SRC_WWD_1.jpg"></div>
<div><img src="https://www.pacesconnection.com/ws/SRC_WWD_2.jpg"></div>
<div><img src="https://www.pacesconnection.com/ws/SRC_WWD_3.jpg"></div>
</div>


<script src=“//code.jquery.com/jquery-1.11.0.min.js”></script>
<script type="text/javascript" src="//code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="https://www.pacesconnection.com/ws/slick.min.js"></script>
<script type=“text/javascript”>
jQuery.noConflict();
</script>

<script type="text/javascript">
$('.your-class').slick({
dots: true,
infinite: true,
speed: 300,
variableWidth: true,
arrows: true
});
</script>

</body>
</html>

Mindy Atwood
×
×
×