1 Answers
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 !
Please login or Register to submit your answer