coin-slider links don't work when hovering over the slide image?
if you're using
coin-slider.js
then this problem may be related to z-index
add this to your css style
.coin-slider a {
text-decoration: none;
outline: none;
border: none;
---->>>> cursor: pointer;
---->>>> z-index: 1000;
}
naturally without the ---->>>>
Comments