Espen Skinderhaug
asked 10 years ago
1 Answers
DominicStaff
answered 10 years ago

Hello Vitor ! To make the featured slider to slide auto on load, you can add the following code to the Header Code (Dashboard > Customize > Custom Code)

<script>
jQuery(function($){
$('.carousel').carousel({
interval: 3000
});
});
</script>

If you want to custom for each carousel, you can change the ID of the carousel in the line code: 

$('.carousel').carousel({

Eg: carousel-2, carousel-3, carousel-4
After changing:

$('.carousel-2').carousel({

Hope this helps !

Powered by DW Question & Answer Pro