Some elements are missing a label for screen readers
-
On the lesson screen, the “Search for course content” form in the sidebar has a submit button, which appears as a magnifying glass icon (inserted via CSS). When a screen reader focuses on this button it cannot inform the user of the button’s purpose, because there is no text label.
<form method="post" class="search-course">
<input type="text" name="s" autocomplete="off" placeholder="Search for course content">
<button name="submit"></button>
<button type="button" class="clear"></button>
</form>Also on the lesson screen, there’s an anchor tag with an X icon that’s used to close the lesson (or go back to the course overview). This anchor tag requires a label for screen readers for the same reason.
<a class="back-course"><i class="lp-icon-times"></i></a>
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.