Home › Forums › Pro Support › Add arrow to Carousel and hide dots › Reply To: Add arrow to Carousel and hide dots
August 11, 2019 at 5:29 pm
#10722
Keymaster
Hi there,
First, add this function:
add_filter( 'wpsp_carousel_args', function( $args ) {
$args['arrows'] = true;
$args['dots'] = false;
return $args;
} );
Then, add this CSS:
.slick-next:before,
.slick-prev:before {
color: black;
}