A client of ours — a small e-commerce shop up in Boca — forwarded me an email last year with the subject line "URGENT: ADA Compliance Violation." It was a demand letter from a law firm claiming their website was inaccessible to blind users and threatening a lawsuit unless they paid a "settlement" of a few thousand dollars and remediated the site. No customer had ever complained. No one from that firm had ever bought anything. It was, as these things usually are, a template.
That's the version of website accessibility most business owners hear about first: the scary letter, the shakedown, the panic. And it's real — but it's also the least useful way to think about the problem. So let me give you the calm version. Who actually has to comply, what the real legal risk looks like in 2026, why the "one-line fix" widgets are a trap, and the handful of changes that do most of the work — most of which also make your site faster, rank better, and convert more.
Who actually has to comply
The law everyone means when they say "ADA compliance" is Title III of the Americans with Disabilities Act, which requires "places of public accommodation" to be accessible. The ADA was written in 1990, long before anyone bought sneakers on a phone, so it never mentions websites. That gap is why this area is still messier than it should be.
Here's the honest state of things in 2026:
- Consumer-facing businesses are the target. Retail, restaurants, hospitality, healthcare, professional services — if the public transacts with you online, courts have broadly treated your website as covered, especially in the Eleventh Circuit (that's us, in Florida), the Second (New York), and the Ninth (California).
- There's a genuine circuit split. Some courts require a "nexus" to a physical location before a website counts; others treat the site as a public accommodation on its own. If you have a storefront and a website, don't count on the nexus argument saving you.
- Government and public-sector sites are held to a written standard. In 2024 the DOJ finalized a rule under Title II requiring state and local government websites to meet WCAG 2.1 AA on a fixed timeline. If you touch public-sector work, that part isn't fuzzy anymore — I got into how it shapes those projects in our piece on what it costs to build a government website.
- B2B and tiny brochure sites are lower risk — not zero. A five-page site for a plumber with no online transactions is a far less attractive target than a busy online store. But "less attractive" is not "immune," and the letters don't always check first.
If you sell to the public online, assume you're in scope and move on. Arguing about whether a 1990 statute technically covers your checkout page is not a strategy.
The real legal risk, minus the fear-mongering
Now the part the scary emails leave out: the risk is real, but it's a specific, knowable shape.
Federal ADA website lawsuits have run in the thousands per year for a while now — roughly 4,000+ annually in federal court, plus a heavy concentration of state-court filings in New York and California. That sounds enormous until you see the pattern behind it:
- A small number of firms and repeat plaintiffs file most of them. This is a volume business. The same handful of firms send thousands of near-identical demand letters and file serial suits, usually over the same short list of issues an automated scanner flagged.
- Demand letters vastly outnumber lawsuits. For every filed case there are many more letters asking for a quiet settlement — often just a few thousand dollars — precisely because it's cheaper for you to pay than to litigate. That math is the entire model.
- E-commerce is the bullseye. Online stores get hit far more than brochure sites, because a checkout a screen-reader user can't complete is the clearest, most defensible claim there is.
What that means for you: your goal isn't to be "unsued" — nobody can promise that. Your goal is to not be low-hanging fruit, and to have a real remediation story if a letter ever shows up. A site that passes the obvious automated checks and has a genuine accessibility effort behind it is a bad target; the serial firms move on to easier ones. And if a letter does land, don't panic-pay it without talking to a lawyer — but don't ignore it either.
Why accessibility overlay widgets are a trap
This is the one I feel strongly about, because it's where well-meaning owners waste money and make things worse.
You've seen the pitch: paste one line of JavaScript, drop a little accessibility icon in the corner, and a widget from a company like accessiBe, UserWay, or AudioEye will "make your site ADA compliant" automatically. It is, plainly, too good to be true.
- Overlays don't fix the underlying code. They sit on top of your site and try to patch things at runtime. The real problems — bad markup, missing labels, unlabeled buttons — live in the code the overlay can't actually repair.
- They frequently break the experience for the people they claim to help. Blind and low-vision users and accessibility engineers have reported, in large numbers, that overlays interfere with the screen readers and settings people already run. There's a widely-signed "Overlay Fact Sheet" from accessibility professionals recommending against them.
- They don't stop lawsuits — plaintiffs specifically target overlay sites. Thousands of the suits filed in recent years were against sites running an overlay. The widget is a tell that nobody did the real work.
- The regulators are on record. In 2025 the FTC fined accessiBe $1 million over deceptive claims that its tool made sites fully WCAG/ADA compliant and over undisclosed paid reviews. When the FTC is fining the "solution," that's your answer.
Overlays run around $490 a year and mostly buy you a false sense of security and, sometimes, a bigger target on your back. Put that money toward fixing the actual site.
The standard you're actually aiming for: WCAG 2.1 / 2.2 AA
Courts and settlements almost always reference the Web Content Accessibility Guidelines (WCAG), not the ADA text itself, because WCAG is the thing you can actually measure against. A few plain-English facts:
- Level AA is the target. WCAG has three conformance levels — A, AA, AAA. AA is the practical, legal, and industry standard. AAA is aspirational and not expected for a normal business site.
- WCAG 2.1 AA is the settled baseline; 2.2 AA is where you should be heading. Version 2.2 was published in late 2023 and adds a handful of sensible criteria — bigger touch targets (a 24-pixel minimum), a visible focus indicator, not forcing people to re-enter info they already gave, authentication that doesn't rely on remembering a puzzle, and consistent help. Building to 2.2 AA today is the smart bet.
- The four principles are easy to remember: POUR. Content must be Perceivable, Operable, Understandable, and Robust. Nearly every specific rule ladders up to one of those.
You don't need to memorize the spec. You need a team that builds to it by default and a way to verify. Which brings us to the fixes that matter most.
The highest-leverage fixes (the checklist I'd actually run)
WCAG has dozens of success criteria, but in practice a small set of issues account for the overwhelming majority of real problems — and nearly all the ones plaintiffs cite. If you do nothing else, do these, and notice how many of them also quietly help SEO and conversions.
- Alt text on meaningful images. Every image that carries information needs a short, descriptive alt attribute; purely decorative images should get an empty alt (alt="") so screen readers skip them. This is also, word for word, how image SEO works.
- Color contrast. Body text needs a contrast ratio of at least 4.5:1 against its background; large text and meaningful UI elements need 3:1. That trendy light-gray-on-white look fails, and it costs you conversions from everyone, not just low-vision users.
- Keyboard navigation. Every interactive thing — links, buttons, menus, forms, modals — has to work with the Tab key and Enter/Space, in a logical order, with no "keyboard traps" where focus gets stuck. Test it: unplug your mouse and try to use your own site.
- Visible focus states. As you tab through the page you must be able to see where you are. The most common self-inflicted wound I see is a designer deleting the focus outline because they think it's ugly. Style it — don't remove it.
- Real form labels. Every input needs a programmatically associated label, not just placeholder text that disappears the moment you type. Errors must be described in text (not color alone) and tied to the field. A broken form is the fastest way to lose both a sale and a lawsuit.
- Semantic headings and structure. One h1, then a logical h2/h3 outline, plus proper landmarks (header, nav, main, footer). Screen-reader users navigate by headings the way you skim with your eyes — and search engines read the exact same structure.
- Respect motion preferences. No autoplaying carousels that can't be paused, nothing that flashes more than three times a second, and honor the "prefers-reduced-motion" setting for animations. Motion-sensitive users get physically ill; everyone else just gets distracted.
- Meaningful link text. "Click here" and "read more" tell a screen-reader user nothing out of context. Say where the link goes.
Notice the theme: almost none of this is exotic. It's just competent front-end engineering. A team that writes clean, semantic HTML gets most of the way there for free.
How to actually test it
Here's the catch with testing: automated tools only catch somewhere around 30-40% of real accessibility issues. They're necessary and useless on their own, so run both kinds:
- Automated scanners — axe DevTools (a browser extension), WAVE, and the accessibility audit built into Chrome's Lighthouse. Free, fast, and great for catching contrast, missing alt text, and missing labels.
- A keyboard-only pass — the cheapest, highest-signal manual test there is. Put the mouse away and try to use the whole site.
- A screen-reader pass — NVDA is free on Windows, VoiceOver is built into Mac and iOS. Even ten minutes will surface things no scanner catches.
- A real manual audit for anything transactional. If you run a store or take payments, have a human who knows WCAG audit the key flows. That's the part that actually protects you.
If you'd rather not do this yourself, that's exactly what a free audit is for — we'll tell you where you actually stand before anyone spends a dollar on remediation.
Build it in vs. bolt it on: the real cost math
This is the part that should make you feel better, not worse.
When accessibility is built in from the start by a competent team, it adds very little — often close to nothing — because it's mostly just doing the front-end work correctly the first time. On a new build, treating WCAG 2.2 AA as the default rather than an afterthought isn't a big line item; it's a standard of care.
Retrofitting a finished site is where it gets expensive, and the range is wide:
- A proper manual audit of a small-to-mid site usually runs a few thousand dollars — think roughly $1,500 to $5,000+ depending on size and complexity.
- Remediation of a small brochure site might be $3,000-$10,000; a mid-size site with forms, a store, and lots of templates can climb to $15,000-$50,000+ once you're rebuilding components that were never structured right.
- A $490/year overlay buys you none of that and, as covered above, can make things worse.
The lesson every client who came to us after a demand letter learned the hard way: building it in correctly is dramatically cheaper than fixing it under legal pressure. If you're planning a new site, insist accessibility is in scope from day one — it's baked into how we price and build, which you can see on our pricing page.
Accessibility is good engineering and good business
If I've done my job, you've noticed the accessibility checklist and the "make your site better" checklist are almost the same list. That's not a coincidence.
- SEO overlap: semantic headings, descriptive alt text, meaningful link text, and clean structure are precisely what search engines reward. Google's crawler is, functionally, a very well-funded screen-reader user.
- Conversion overlap: readable contrast, forms that don't fight you, and a keyboard-friendly checkout reduce friction for everyone. Estimates put working-age adults with a disability at roughly one in four — that's not an edge case, it's a quarter of your market.
- Reach and resilience: an accessible site works on more devices, for more people, in more situations — bright sunlight, a dead trackpad, a noisy room. Accessible design is just resilient design.
Frame it as legal defense and it feels like a tax. Frame it as good engineering and it's an investment that pays back in traffic and sales. It's the second one.
Frequently asked questions
Does my small business really have to be ADA compliant?
If the public transacts with your business online, assume yes. Courts have broadly extended Title III to consumer-facing websites, and even where the law is unsettled, the demand-letter firms don't wait for clarity. A tiny brochure site with no transactions is lower risk, but the cost of doing it right is low enough that "lower risk" isn't a real reason to skip it.
Will an accessibility widget or overlay protect me from a lawsuit?
No. Overlays don't fix the underlying code, they frequently break the experience for the users they claim to serve, and sites running them have been sued by the thousands. In 2025 the FTC fined a leading overlay vendor $1 million over its compliance claims. Spend the money on the actual site instead.
What standard do I need to meet?
WCAG 2.1 AA is the settled baseline courts and settlements reference; WCAG 2.2 AA is the newer version and the smart target for anything built today. Level AA — not AAA — is the practical goal for a normal business site.
How do I know if my current site is accessible?
Start with the free automated tools (axe, WAVE, Lighthouse) and a keyboard-only walkthrough, but remember automated scans catch only about a third of real issues. For anything transactional, get a human audit of your key flows. Honestly, that's the most valuable hour you can spend before deciding what, if anything, to fix.
I already got a demand letter — what do I do?
Don't panic-pay, and don't ignore it. Talk to a lawyer about the specific claim, and in parallel start real remediation — because fixing the site both reduces your exposure and is the right thing to do regardless. The businesses that fare best are the ones that can show a genuine, ongoing accessibility effort.
The bottom line
Website accessibility in 2026 isn't a reason to panic, and it isn't something to hand off to a widget. It's a shape you can understand: know whether you're in scope, aim for WCAG 2.1/2.2 AA, fix the handful of things that matter, skip the overlays, and test with real tools and a real keyboard. Do that and you're both a bad lawsuit target and a better business — faster, more findable, and open to more customers. If you want a straight answer about where your site stands, see how we bake accessibility into every web development engagement, or just get in touch and we'll talk it through — no fear-mongering required.
