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:
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>