ADA Compliance
-
Hi,
I am using this plugin on a site that needs to be ADA compliant, and there just a couple little tweaks needed for me to get it passing. Can you take a look to see if this is something you can add?
ISSUE #1 – on https://delphic.scarabmedia.com (next 5 events list view)
Error: Empty Button – A button is empty or has no value text. This is on the previous and next arrows.
Why It Matters
When navigating to a button, descriptive text must be presented to screen reader users to indicate the function of the button.How to Fix It
Place text content within the <button> element or give the <input> element a value attribute.The Algorithm… in English
A <button> element is present that contains no text content (or alternative text), or an <input type=”submit”>, <input type=”button”>, or <input type=”reset”> has an empty or missing value attribute.ISSUE #2 – https://delphic.scarabmedia.com/calendar/ (full month view)
This page has the same issue as #1 with the arrows, but also there is an “Empty table header” error in two places on the page.
What It Means
A <th> (table header) contains no text.Why It Matters
The <th> element helps associate table cells with the correct row/column headers. A <th> that contains no text may result in cells with missing or incorrect header information.How to Fix It
If the table cell is a header, provide text within the cell that describes the column or row. If the cell is not a header or must remain empty (such as the top-left cell in a data table), make the cell a <td> rather than a <th>.The Algorithm… in English
A <th> element does not contain any text (or contains only spaces) and no images with alternative text.The page I need help with: [log in to see the link]
- The topic ‘ADA Compliance’ is closed to new replies.