Slick Slider Wrong Width On Initialization
I am trying to implement Slick slider, but calculated width of each slide is wrong (padding on right side of image).
-slick').slick({
dots: true,
mobileFirst:true,
**prevArrow: '<a class="slick-prev">Previous</button>',
nextArrow: '<a class="slick-prev">Previous</button>',**
slidesToShow: 3,
slidesToScroll: 8
});
You are opening an anchor tag and closing a button. Thats wrong.
Post a Comment for "Slick Slider Wrong Width On Initialization"