-2

All functionalities are working properly. However, the previous and next buttons are not clearly visible when hovered over it.

What CSS elements should we change to make the icons more visible?

Here's an screenshot:

enter image description here

Here's my js code:

$('.flexslider').flexslider({
      animation: "slide"
    });

and the iteration using laravel:

<div class="flexslider flex">
            <ul class="slides">
              @foreach($ads as $ad)
              <li><img src="/storage/avatars/{{$ad->image}}" alt="image"></li>                              
              @endforeach                            
            </ul>
          </div>
Vic Andam
  • 823
  • 2
  • 7
  • 17

1 Answers1

0

Maybe your index is to low:

   .classOfYourButtons{z-index: 9999; color: yellow; }

pls post your Code to analyze your problem

Michi
  • 129
  • 5