Answers for "how to style the arrow of the slick carousel"

CSS
9

slick arrow css

.slick-prev:before {
  content: "<";
  color: red;
  font-size: 30px;
}

.slick-next:before {
  content: ">";
  color: red;
  font-size: 30px;
}
Posted by: Guest on September-14-2021
6

slick slider custom arrows

prevArrow: '<button class="slide-arrow prev-arrow"></button>',
    nextArrow: '<button class="slide-arrow next-arrow"></button>'
Posted by: Guest on November-08-2021

Code answers related to "how to style the arrow of the slick carousel"

Browse Popular Code Answers by Language