Previous button(arrow) is not scrolling frames. (next button(arrow) is working)
====================================================================
$('.carousel-slide').slick({
slidesToShow: 1,
slidesToScroll: 1,
fade: true,
infinite: true,
speed: 500}
);
here is the html
<section class="carousel" id='gallery-carousel'>
<div class='carousel-slide'>
<div>
<h3>1</h3>
</div>
<div>
<h3>2</h3>
</div>
<div>
<h3>3</h3>
</div>
</div>
</section>
[ paste your jsfiddle link here ]i am unable to recreate in jsfiddle as to reproduce requires fonts.
use this jsfiddle to reproduce your bug:
http://jsfiddle.net/simeydotme/fmo50w7n/
we will likely close your issue without it.
====================================================================
====================================================================
... I expect that the button turns opaque and the pointer changes on hover and when selected the slide carousel should advance backwards
====================================================================
nothing happens, no hover and no pointer change, slides do not advance backward
...
====================================================================
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...
Most helpful comment
My solution:
it appeared to fix the issue