Skip to main content

Add prevArrow: false and nextArrow: false to where you call your carousel. Ex)

$('.slider').slick({
        dots: false,
        prevArrow: false,
        nextArrow: false
    });

I added dots: false in case you wanted to remove that too.

Add prevArrow: false and nextArrow: false to where you call your carousel. Ex)

$('.slider').slick({
        dots: false,
        prevArrow: false,
        nextArrow: false
    });

I added dots: false in case you wanted to remove that too.

Add prevArrow: false and nextArrow: false to where you call your carousel. Ex)

$('.slider').slick({
    dots: false,
    prevArrow: false,
    nextArrow: false
});

I added dots: false in case you wanted to remove that too.

Source Link
Edward
  • 1.5k
  • 14
  • 25

Add prevArrow: false and nextArrow: false to where you call your carousel. Ex)

$('.slider').slick({
        dots: false,
        prevArrow: false,
        nextArrow: false
    });

I added dots: false in case you wanted to remove that too.