View Full Executive Developer By page
Accessibility statement
Export EARL CSV Issues
Skip to report
Accessibility audit report

Digital accessibility audit

Prepared for Riverside Books (sample) · riversidebooks.example

10 July 20265 key page templates + 2 flows testedJoe Gullo
EAA WCAG 2.2 AA EN 301 549
Overall score 74 / 100 Close — a few blockers to clear
How to read this Critical — blocks people now Serious Moderate Minor Dotted terms open the glossary
Score by principle

WCAG groups every requirement under four principles — content must be Perceivable, Operable, Understandable and Robust.

Perceivable 68% · 2 issues
Operable 71% · 1 issue
Understandable 82% · 1 issue
Robust 60% · 1 issue
Scope

Pages tested

The pages covered by this audit.

Conformance target: WCAG 2.2 Level AA

Tested with (accessibility support baseline)

  • Chrome 127 · NVDA 2024.2 · Windows 11
  • Safari 17 · VoiceOver · macOS 14
  • Chrome (Android) · TalkBack 14 · Android 14

How the sample was chosen: A representative sample chosen per WCAG-EM Step 3: the key entry pages plus the complete purchase process, selected to cover each distinct page type (home, listing, product detail, cart/checkout, contact form) and the interactive components they share (navigation, search, forms, add-to-cart).

Findings & fixes

Grouped by page, most affected first.

Cart & checkout 1

Critical A-01

Cart buttons have no accessible name

WCAG 4.1.2 · A
In plain terms

The Add to cart, + and controls are icon-only buttons with no text a screen reader can announce. A blind customer using a screen reader hears only "button, button, button" and can't tell which one adds the book or changes the quantity — so they can't complete a purchase.

Screen reader users; voice-control users who say a control's name
The fix
- <button class="add"><svg aria-hidden="true">…</svg></button>
+ <button class="add" aria-label="Add The Lighthouse to cart">
+   <svg aria-hidden="true">…</svg>
+ </button>
Impact: high Effort: low

Site-wide / all pages 2

Serious A-02

Navigation and footer text is too low-contrast

WCAG 1.4.3 · AA
In plain terms

The gray menu and footer links sit at about 2.9:1 against white — below the 4.5:1 minimum. People with low vision, or anyone on a phone in sunlight, struggle to read them.

Low-vision users; anyone in bright light
The fix
- color: #9aa4b2; /* 2.9:1 */
+ color: #4b5563; /* 7.0:1 — passes AA */
Impact: medium Effort: low
Moderate A-05

No visible focus indicator when tabbing

WCAG 2.4.7 · AA
In plain terms

A custom stylesheet removes the browser's focus outline (outline: none) without adding one back. Keyboard users can't see which link or button they're on, so they get lost moving through the page.

Keyboard-only users; people with motor disabilities
The fix
- :focus { outline: none; }
+ :focus-visible { outline: 3px solid #294557; outline-offset: 2px; }
Impact: medium Effort: low

Contact 1

Serious A-03

Contact and checkout fields have no labels

WCAG 3.3.2 · A
In plain terms

Several inputs use only placeholder text as their label. Placeholders vanish once you start typing, and most screen readers don't treat them as a real label — so people don't know what to enter, and can't check what they've typed.

Screen reader users; people with memory or attention difficulties
The fix
- <input type="email" placeholder="Email">
+ <label for="email">Email</label>
+ <input id="email" type="email" autocomplete="email">
Impact: high Effort: medium

Browse books 1

Moderate A-04

Book cover images have no text alternative

WCAG 1.1.1 · A
In plain terms

Cover images on the browse and detail pages have empty alt text. A screen reader skips them, so a blind shopper browsing by cover gets an unlabeled list of "image, image, image".

Screen reader users
The fix
- <img src="lighthouse.jpg" alt="">
+ <img src="lighthouse.jpg" alt="The Lighthouse by V. Marsh — cover">
Impact: low Effort: low
Method

How this audit was conducted

This audit followed my standard 10-working-day method, evaluated against WCAG 2.2 Level AA using the W3C WCAG-EM methodology: a defined scope, a representative page sample, and a pass/fail outcome for each success criterion. 70 of 72 checks applied to this site's scope; the remaining checks cover features this site doesn't have.

Stage 1 · Getting started & first scan

  • Held the kickoff call and agreed the work in writing Pass
  • Agreed which pages to test Pass
  • Agreed the accessibility standard to test against Pass
  • Agreed the test environment — the browsers, assistive technology and operating systems the site will be checked with Pass
  • Ran automated checks across the sample pages Pass
  • Reviewed the automated results by hand and removed false alarms Pass

Stage 6 · Matching to the standard & your statement

  • Matched every issue to the official accessibility rule it breaks Pass
  • Rated each issue by how much it affects people Pass
  • Wrote a clear fix for every issue Pass
  • Drafted your accessibility statement, ready to publish Pass

Stage 7 · Wrap-up & handover

  • Put the report together and checked it over Pass
  • Booked the wrap-up call with your team Pass
  • Handed over the report and accessibility statement Pass