Step 3:
Add the <script> to activate the carousel, also before your page's </body> tag:
<script>
$(document).ready(function(){
$('.carousel').bxSlider({
pager: false,
slideMargin: 30,
controls: false,
speed: 60000,
useCSS: false,
ticker: true,
tickerHover: true,
slideWidth: 300,
responsive: false,
minSlides: 1,
maxSlides: 4,
});
});
</script>
The red class name (carousel) can be changed to whatever you want,
but it must be the same one you give to your carousel wrapper.
All the blue properties are options you can change.
For example:
ticker: true = makes the carousel seamlessly move nonstop.
tickerHover: trure = makes the carousel stop moving on mouse hover.
speed: 60000 = obviously... the speed of the carousel.
All options are detailed
here