Add custom buttons on Slick Carousel

前端 未结 11 670
迷失自我
迷失自我 2020-12-23 14:23

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

11条回答
  •  执笔经年
    2020-12-23 15:06

    This worked for me when a lot of these other items did not:

    .slick-prev:before {
      content: url('your-arrow.png');
    }
    .slick-next:before {
      content: url('your-arrow.png');
    }
    

提交回复
热议问题