How do I apply custom prev and next buttons to slick carousel? I have tried a background image on the .slick-prev and .slick-next css classes. I ha
.slick-prev
.slick-next
its very easy. Use the bellow code, Its works for me. Here I have used fontawesome icon but you can use anything as image or any other Icon's code.
$(document).ready(function(){ $('.slider').slick({ autoplay:true, arrows: true, prevArrow:"", nextArrow:"" }); });