← Back to Blog

WCAG 2.2 Quick Wins for UK Small Business Websites

Fix the 6 failures that account for 96% of all errors — most in a weekend sprint

WCAG 2.2 quick wins checklist showing the 6 most common accessibility failures and how to fix them

Why WCAG 2.2 matters for your UK small business

One in four UK adults has a disability. That is over 14 million potential customers who may struggle to use your website right now — and most will leave without telling you why. But accessibility is not just about doing the right thing. It is a legal requirement under the Equality Act 2010, and if you sell to EU customers, the European Accessibility Act (EAA) added a second enforcement layer from 28 June 2025.

The good news? You do not need a £10,000 audit to start. Research from the WebAIM Million shows that 96% of all detected accessibility errors come from just 6 issue types. Fix these six things and you have eliminated the vast majority of what automated scanners catch. Most can be resolved in a weekend sprint.

This guide gives you the practical, no-nonsense steps to fix each one — with time estimates, free tools, and the UK legal context you need to understand what is at stake.

Quick context: WCAG 2.2 is the current international standard for web accessibility, published by the W3C in October 2023. In the UK, WCAG 2.2 Level AA is the recognised benchmark that courts and the EHRC use to interpret the Equality Act 2010's "reasonable adjustments" duty. The European Accessibility Act (now in force) requires the same standard for businesses selling to EU customers.

The 6 failures that account for 96% of all errors

The WebAIM Million report scans the top million home pages annually. Year after year, the same six failures dominate. Here they are, ranked by prevalence, along with how to fix each one.

Quick Win #1 — Fix colour contrast (1–2 hours)

Found on 79.1% of home pages — the single most common failure. Light grey text on white. White text on light blue backgrounds. Yellow text on white. These all fail WCAG's minimum contrast requirement of 4.5:1 for normal text and 3:1 for large text.

The fix is usually a handful of colour values in your CSS. Use the free WebAIM Contrast Checker to test your current colours against WCAG AA requirements. Aim for 7:1 if you can — it is easier to read for everyone, not just people with low vision. Better contrast also reduces bounce rates; readability is an SEO signal.

Impact: Benefits users reading in bright sunlight, older users, people with low vision, and anyone squinting at their phone on a train.

Quick Win #2 — Add alt text to meaningful images (30 min — 2 hours)

Found on 55.5% of home pages. When a screen reader encounters an image with no alt attribute, it either skips it entirely or reads out the file name — usually something like "IMG_4392.png". Neither is helpful.

Every <img> tag needs an alt attribute that describes what the image conveys. Decorative images (pure dividers, visual flourishes) should have alt="" so screen readers skip them. Your logo's alt text should be your business name. A product photo should describe the product.

SEO bonus: Alt text helps Google understand image content and improves visibility in image search. Start with your top 20 most-visited pages.

Quick Win #3 — Label every form field (1–2 hours)

Found on 48.2% of home pages. Placeholder text ("Enter your name") is not a label. It vanishes when the user starts typing and is ignored by many screen readers. Every input needs an associated <label> element with a for attribute matching the input's id.

Error messages matter too. "Please enter a valid email address" passes. A red border with no explanation fails. The fix here is straightforward HTML — no design changes required.

Impact: Screen reader users, voice-control users, mobile users, and your conversion rates all benefit. One study found a 22% increase in form success rates with proper inline validation.

Quick Win #4 — Restore visible keyboard focus indicators (30 min — 1 hour)

Many sites remove focus outlines (outline: none in CSS) for aesthetic reasons. This breaks keyboard navigation entirely. If you cannot see where you are when tabbing through a site with your keyboard, neither can someone who cannot use a mouse.

WCAG 2.2 added a new criterion — Focus Not Obscured (2.4.11) — which means sticky headers and cookie banners must not hide focused elements. Restore the outline or add custom :focus-visible styles with at least 3:1 contrast. Use scroll-margin-top to prevent sticky header overlap.

Test it now: Unplug your mouse. Tab through your site. Can you see where you are on every element? If not, this is your first fix.

Quick Win #5 — Replace vague link text (30 min)

Found on 45.4% of home pages (empty links) / 29.6% (empty buttons). "Click here", "Read more", and "Learn more" are meaningless out of context. A screen reader user tabbing through a list of "click here" links has no idea where any of them go.

Replace vague text with descriptive alternatives: "View our accessibility audit pricing" instead of "Learn more". For icon-only links (social media icons, hamburger menus), add an aria-label attribute.

Quick Win #6 — Add document language and logical heading structure (30 min)

Found on 15.8% of home pages (missing language). If your <html> tag has no lang attribute, screen readers do not know what language to use for pronunciation. Fix: change <html> to <html lang="en"> (or "en-GB" for British English).

Headings should follow a logical hierarchy: one <h1> per page, followed by <h2> sections, then <h3> subsections. Do not skip levels. Screen reader users navigate by headings — this structure is essential.

WCAG 2.2 — The 6 new criteria that matter for AA compliance

WCAG 2.2 added nine new success criteria. If you already meet WCAG 2.1 AA, these are the only additions you need. The six that matter most for small business websites:

Note: criterion 4.1.1 Parsing was removed as obsolete — modern browsers handle it natively.

Your free 30-minute accessibility audit

You do not need expensive tools to find most issues. Start with this sequence:

  1. Run WAVE — Install the free WAVE browser extension and scan your homepage. It flags contrast errors, missing alt text, and structural issues instantly.
  2. Run Lighthouse — Open Chrome DevTools (F12), go to the Lighthouse tab, run an Accessibility audit. It gives you a score and a prioritized list.
  3. Keyboard test — Unplug your mouse. Tab through every page. Can you reach every link, button, and form field? Can you see where focus is at all times?
  4. 200% zoom test — Zoom your browser to 200%. Does the layout break? Can you still read and navigate everything?
  5. Screen reader spot-check — Turn on VoiceOver (Mac) or NVDA (Windows) and listen to your homepage. Is the reading order logical? Are images described?

Important: Automated tools catch only 30–57% of WCAG issues. They miss things like logical reading order, meaningful link text quality, and whether error messages actually help. Manual testing is essential for genuine compliance.

30-Day Accessibility Sprint Plan

Fixing accessibility does not have to be overwhelming. Break it into four weekly sprints:

DIY vs Professional Audit — Which do you need?

Both approaches have their place. Here is how they compare:

Factor DIY Self-Audit Professional Audit
Cost £0 (free tools) £400–£3,500 (site size dependent)
Coverage 30–57% of issues (automated only) 90%+ (automated + manual + screen reader)
Time 4–8 hours 1–3 weeks turnaround
Best for Brochure sites under 20 pages, initial assessment Complex interactions, public sector, legal disputes
Legal weight Good faith effort, not formal documentation Formally documented, defensible evidence
UK-specific Tools do not reference UK law Contextualised to Equality Act, EAA, PSBAR

Recommendation: Start with a DIY audit to fix the obvious issues. If you have had a complaint, sell to EU customers, or want formal documentation, get a professional WCAG audit for defensible evidence of compliance efforts.

UK Legal Context — What you need to know

Three laws govern website accessibility in the UK. Here is how they apply to your business:

Key distinction: If you only serve UK customers, the Equality Act is what matters. If you sell to EU customers online, the EAA applies too. PSBAR only applies to public sector bodies.

Anti-Overlay Warning

One-line JavaScript accessibility overlays do not fix your underlying code. They do not achieve WCAG compliance. The FTC fined accessiBe $1,000,000 for deceptive claims, and the disability community widely rejects these tools. They create false confidence while introducing new barriers. Fix the source HTML and CSS instead.

Frequently asked questions

Do I need to make my small business website accessible in the UK?

Yes. The Equality Act 2010 requires all service providers to make reasonable adjustments for disabled people, and this extends to websites. WCAG 2.2 Level AA is the standard courts and the EHRC use to assess compliance. No business is exempt based on size, though what counts as "reasonable" depends on your resources.

What are the quickest accessibility fixes for a UK small business website?

The five fastest high-impact fixes are: (1) fix colour contrast to meet 4.5:1 ratio, (2) add descriptive alt text to all meaningful images, (3) label every form field with a proper label element, (4) restore visible keyboard focus indicators, and (5) replace vague link text like "click here" with descriptive text. These can be completed in a weekend sprint.

How much does a website accessibility audit cost in the UK?

For a small business site (5-15 pages), a professional accessibility audit typically costs £400-£1,200. A mid-sized site (20+ pages) costs £1,500-£3,500. Full remediation for a mid-sized site ranges from £2,500-£6,000. Free automated tools like WAVE and axe DevTools can identify many common issues as a starting point.

What is the difference between WCAG 2.1 and WCAG 2.2?

WCAG 2.2 adds 9 new success criteria and removes 1 (4.1.1 Parsing, now obsolete). The 6 new Level A/AA criteria are: Focus Not Obscured, Dragging Movements, Target Size Minimum, Consistent Help, Redundant Entry, and Accessible Authentication. WCAG 2.2 is backward compatible — content conforming to 2.2 also conforms to 2.1.

Do accessibility overlay widgets make my website compliant?

No. Accessibility overlay widgets that inject a single line of JavaScript do not fix underlying code issues and do not achieve WCAG compliance. The FTC fined accessiBe $1M for deceptive claims. The disability community widely rejects these tools as they create false confidence while introducing new barriers. Fix the source HTML and CSS instead.

Next steps

If you want a quick free check of your current accessibility standing, run our free AI accessibility scan. For a thorough professional assessment with formal documentation, get a professional WCAG audit with specific remediation guidance. If you are building a new website and want accessibility baked in from day one, see our accessibility services or view our website packages.

Want us to check your website?

We can run a full accessibility audit and give you a clear, prioritised list of what to fix — with time estimates and no jargon.

Get in Touch