Small Business Websites Are the New Target of ADA Demand Letters
Over 4,600 federal ADA website lawsuits were filed in 2023 alone — and by 2026, plaintiffs' firms have refined their playbooks to the point where a single automated scanner can generate dozens of demand letters in an afternoon. The businesses receiving those letters are not Fortune 500 companies. They are local restaurants, solo law offices, independent salons, and two-person plumbing companies. If your website is publicly accessible, it is eligible for scrutiny.
The good news is that the fixes are not mysterious. The bad news is that the most popular "solution" sold to small businesses — the one-line overlay script — does almost nothing to reduce your legal exposure. This article breaks down what the law actually requires, what the courts are looking at, and the specific changes that make a real difference for ADA website compliance in 2026.
Why Small Businesses Are in the Crosshairs
The Americans with Disabilities Act has applied to places of public accommodation since 1990. Courts have steadily extended that definition to websites, and in March 2022 the Department of Justice formally confirmed that Title III of the ADA covers web content. The DOJ's subsequent guidance pointed directly at WCAG 2.1 Level AA as the benchmark — and the updated WCAG 2.2 standard, finalized in late 2023, is now the version compliance attorneys reference in 2026 demand letters.
Small businesses are targeted for a simple economic reason: they are less likely to have in-house counsel, more likely to settle quickly, and less likely to have already audited their site. A settlement demand of $5,000–$15,000 often feels cheaper than fighting, even when the underlying claim is weak. Understanding what is actually required is your first layer of protection.
What WCAG 2.2 Actually Requires — In Plain Language
WCAG stands for Web Content Accessibility Guidelines. "Level AA" is the target that courts, regulators, and plaintiff attorneys use as the standard for WCAG compliance for small businesses. Here is what that means for the four areas that generate the most complaints.
1. Color Contrast
Text must have a contrast ratio of at least 4.5:1 against its background for normal-sized text, and 3:1 for large text (roughly 18pt or 14pt bold). This is one of the most commonly cited violations because many designers choose soft, on-brand color combinations that look beautiful on a calibrated monitor but are nearly unreadable for users with low vision or color blindness.
- Light gray text on a white background? Almost always a violation.
- Yellow text on a white background? Almost always a violation.
- Dark navy text on a mid-blue background? Likely a violation.
Free tools like the WebAIM Contrast Checker let you paste two hex codes and get an instant pass/fail. Run every text color and background combination on your site through it. Pay special attention to buttons, footer text, and placeholder text in forms — those are flagged constantly.
2. Keyboard Navigation
Every action a mouse user can take must also be reachable by someone using only a keyboard — typically Tab, Shift+Tab, Enter, and arrow keys. This matters for users with motor disabilities who cannot use a mouse and for users relying on screen readers.
Common failures include:
- Navigation menus that open on hover but cannot be opened with the keyboard.
- Modal dialogs (popups) that trap focus so the user cannot close them with the keyboard.
- Custom dropdown menus built with
<div>elements instead of semantic HTML that a browser already knows how to handle. - A missing or invisible "focus indicator" — the outline that shows which element is currently selected as you Tab through the page.
The fix is usually a combination of using semantic HTML elements (<button>, <a>, <select>) instead of styled divs, and never removing the CSS outline property without replacing it with a visible alternative.
3. Image Alt Text
Every meaningful image on your site needs an alt attribute that describes what the image conveys. Screen readers read this text aloud to users who cannot see the image. Missing alt text is the single most common violation cited in ADA demand letters — partly because it is trivially easy to detect with an automated scanner.
The rules are straightforward:
- Informational images: Describe what the image shows. A photo of a storefront should say something like "Exterior of Bella's Bakery on Main Street with a blue awning."
- Decorative images: Use an empty alt attribute (
alt="") so screen readers skip it rather than announcing a file name. - Images of text: The alt text should contain the exact text shown in the image.
- Linked images: The alt text should describe the destination, not just the image.
Go through every image on your site — hero banners, team photos, product shots, icons, logo — and make sure each one has a deliberate alt attribute. "IMG_3847.jpg" is not alt text. Neither is "photo."
4. Form Labeling
Every input field in a form — name, email, phone, message, checkbox, radio button — needs a visible, programmatically associated label. "Placeholder text" (the grayed-out hint inside the field) does not count as a label. When a user starts typing, the placeholder disappears, and a screen reader user may have no idea what the field is asking for.
The correct fix is a <label> element explicitly linked to its input via matching for and id attributes. Your contact form, booking form, newsletter signup, and any checkout fields all need this treatment. This is also one of the easiest fixes to implement if you or your developer know where to look.
The Overlay Problem: Why a Script Tag Is Not a Shield
Accessibility overlay tools — those one-line JavaScript snippets that add a floating toolbar to your website — are actively marketed to small businesses as a fast, affordable path to ADA compliance. In 2026, they are also actively cited in lawsuits as evidence that a site is not compliant.
Here is why overlays fail as a legal defense:
- They attempt to fix accessibility problems at runtime in the user's browser, but screen readers and assistive technologies interact with the underlying HTML before any overlay script can patch it. The broken structure is still broken where it matters.
- Major disability advocacy organizations — including the National Federation of the Blind — have publicly opposed overlay tools and documented how they introduce new barriers for assistive technology users.
- Courts and plaintiff attorneys have seen hundreds of demand letters against sites running overlays. The presence of an overlay has not prevented a single successful claim.
- Some overlay vendors make compliance guarantees in their marketing. Those guarantees are between you and the vendor; they do not bind a federal court.
The only reliable protection is fixing the underlying HTML, CSS, and content. That is less glamorous than a one-line install, but it is the only thing that actually works.
A Practical Audit Checklist for 2026
You do not need to hire a $10,000 accessibility consultant to get started. Run through this checklist yourself, then bring in professional help for anything you cannot resolve.
- Run an automated scan. Tools like WAVE (wave.webaim.org) and Google Lighthouse flag a significant percentage of detectable issues for free. Automated tools catch roughly 30–40% of WCAG violations — a good starting point, not a finish line.
- Check every color combination on your site using WebAIM's Contrast Checker.
- Tab through your entire site using only the keyboard. Can you reach every link, button, and form field? Can you see where the focus is at all times?
- Audit every image for a meaningful alt attribute.
- Inspect every form for visible, properly associated labels.
- Check your PDFs. Menus, rate sheets, and service guides posted as PDFs are also covered and are frequently inaccessible.
- Add an accessibility statement to your site — a simple page describing your commitment and providing a contact method for users who encounter barriers.
What Good Looks Like in Practice
Accessibility and good design are not in conflict. A site with strong color contrast, clear navigation, and properly labeled forms is also a site that converts better, loads faster on assistive devices, and ranks better in search engines — Google's crawlers benefit from alt text and semantic structure just as screen readers do.
Look at sites like FlowFix Plumbing or Greenfield Law as examples of small business sites built with clean structure, high-contrast typography, and clearly labeled contact forms from the ground up. Accessibility built in at the design stage is dramatically cheaper than retrofitted compliance.
If your current site is a patchwork of old plugins and inherited code, a full redesign is often the most cost-effective path — and tools like SiteGlowUp.ai let you see what a clean, modern rebuild would look like before you pay anything, with a free preview generated directly from your existing URL.
The Bottom Line on ADA Lawsuit Risk in 2026
The demand letters are real, the settlements are real, and the legal framework is settled enough that "I didn't know" is not a viable defense. But the fixes are also real — and for most small business websites, addressing the four areas covered in this article (contrast, keyboard navigation, alt text, and form labels) will eliminate the vast majority of automated-scan violations that trigger demand letters in the first place.
Start with a free WAVE scan today. Fix what you can fix. Document what you have done. And resist the temptation to install an overlay and call the problem solved — that is the one move that combines the cost of appearing to try with none of the protection of actually succeeding.