Carousel buttons have no accessible name
Critical- Found
- The slider dots on the homepage are buttons containing an empty
span. A screen reader announces “button” nine times with no indication of what each does. - Fix
- Give each button a visible or visually hidden label, and mark the current one.
<!-- as found -->
<button class="owl-dot"><span></span></button>
<!-- fixed -->
<button class="owl-dot" aria-current="true">
<span class="sr-only">Slide 1 of 9</span>
</button>