Open kayetter opened 7 years ago
My solution:
it appeared to fix the issue
Bingo: z-indexing. We should probably add that to the CSS, although we can probably just do z-index: 1
. PR's welcome!
If anyone is having trouble getting the dots and arrows, try:
dots: true,
arrows: true
in your JavaScript, and in your CSS:
.slick-arrow:before {
color: #000 !important;
}
because arrows show up white by default...
Also, remember to add:
<meta charset="UTF-8">
to your HTML doc.
Very helpful!!!!
Yes, thanks for the helps on the z-index for the left arrow. Huge.
Thanck you from France!
Bingo: z-indexing. We should probably add that to the CSS, although we can probably just do
z-index: 1
. PR's welcome!
thank you so much...
Bingo: z-indexing. We should probably add that to the CSS, although we can probably just do
z-index: 1
. PR's welcome!
Thanks a lot!
thank you
This was the fix I needed as well, Thank you!
My solution:
- I made sure that my title div did not cover the area where i was placing the button.
- i added z-index: 9999 to .slick-prev class
it appeared to fix the issue
setting z-index helped me to resolve issue. thanks!
====================================================================
$('.carousel-slide').slick({ slidesToShow: 1, slidesToScroll: 1, fade: true, infinite: true, speed: 500} );
here is the html `
1
2
3