Meta Slider Flexslider Direction Nav Arrows Not Showing
-
Hello,
After upgrading Meta Slider from 2.2.2 to 2.3 the navigation arrow icons don’t show for Flexslider.
The difference that is causing this seems to be that display was used to transition from one slide to the next in the older working version. But, now display is always ‘block’ and the transition is performed using z-index. Active slide is z-index: 2 while all other slides are z-index: 1. This is not allowing the navigation arrow icons to show on top of the slide set.
A solution would be to give the direction nav section a higher z-index value than 2. Although the actual arrow image link already has a z-index: 10, it is not enough.
To solve this issue one can add the following:
.flex-direction-nav {
position: absolute;
top: 50%;
width: 100%;
z-index: 10;
}HTH!
- The topic ‘Meta Slider Flexslider Direction Nav Arrows Not Showing’ is closed to new replies.