Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

The Arrow buttons can be modified in the Slick slider by using the following CSS code:

To change the Arrow button background color:

.slick-prev, .slick-next {
   background-color: #000;
}

To change the Arrow button color:

.slick-prev:before, .slick-next:before {
   color: #fff;
}

To change the Arrow button size:

.slick-prev, .slick-next {
   font-size: 30px;
}

To change the Arrow button position:

.slick-prev, .slick-next {
   top: 50%;
   transform: translateY(-50%);
}

Note: The above CSS code is just an example. You may need to modify the CSS code and values as per your requirement.