ADA Overlays Fail!

Why ada overlays fail and what the ftc has started to look at

ADA Overlays Fail!
why ada overlays fail and what the ftc has started to look at

why ada overlays fail and what the ftc has started to look at

In February 2023, the Federal Trade Commission fined a company called AccessiBe $1 million for deceptive advertising claims about its accessibility widget. The FTC said the company told customers its overlay could make websites “fully ADA compliant” with a line of code. The agency said those claims were not supported.

That case mattered because it was the first major enforcement action focused on accessibility software marketing. Not accessibility itself. Marketing claims.

The ADA does not certify products. The ADA does not approve widgets. There is no government stamp that says a website is compliant. Overlays sell the idea that compliance is automatic.

That is not how WCAG works. It never has.

 

An accessibility overlay is usually a JavaScript widget added to a website. It runs in the browser and tries to modify content after the page loads.

Typical features include:

  • Text size controls
  • Contrast toggles
  • Reading guides
  • Text-to-speech
  • Keyboard shortcuts

Some overlays also try to add alt text automatically using image recognition or rewrite HTML using injected ARIA attributes.

They do not rewrite the original code on the server. They run on top of it.

That distinction matters.

If a form field has no <label> in the source code, a screen reader might still miss it. If navigation requires a mouse, a widget can’t always fix that. If the DOM structure is broken, injected ARIA often conflicts with assistive technology.

Overlays change appearance. They rarely fix structure.


the legal problem with overlays

The Americans with Disabilities Act requires equal access. Courts usually measure that against WCAG 2.1 Level AA from the World Wide Web Consortium.

WCAG requires changes in source code and content. Not cosmetic patches.

Plaintiffs have filed lawsuits against companies that used overlays. Those suits argue that the underlying website still violated WCAG. Courts have allowed many of those cases to proceed.

In 2022, a blind plaintiff sued Eyebobs eyewear in Minnesota. The site had an overlay installed. The complaint said the site still had missing form labels and keyboard traps. The case settled.

In 2023, a lawsuit against a New York restaurant chain said the overlay blocked screen reader navigation entirely on certain pages.

Overlays do not create immunity. Courts have not treated them as compliance.


what the ftc said about deceptive accessibility claims

The FTC complaint against AccessiBe focused on marketing language. According to the agency, the company said its tool could bring sites into full ADA compliance automatically and that it used AI trained on assistive technology testing.

The FTC said those claims were misleading. The company paid $1 million and agreed to stop making unsupported claims.

The FTC does not enforce the ADA. That job usually falls to the Department of Justice and private plaintiffs. But the FTC can act when advertising claims are false.

That changes the overlay business model. Selling a widget as instant compliance becomes risky.


overlays vs wcag 2.1 aa

WCAG 2.1 Level AA includes dozens of requirements. Many cannot be solved with a client-side script.

Examples:

  • Logical heading structure
  • Proper form labels
  • Keyboard navigation for all functions
  • Error identification and suggestions
  • Accessible PDFs
  • Video captions

A widget cannot add captions to a video hosted on YouTube. It cannot rewrite a PDF. It cannot restructure a booking system inside an iframe.

These are content and code issues.

A script can sometimes inject ARIA labels. But incorrect ARIA causes new problems. Screen readers depend on predictable markup.

Developers call this “ARIA soup.”


real example from a dental practice

In October 2023, a two-doctor dental office in Phoenix contacted me after receiving a demand letter. They had an overlay installed that cost $79 per month.

The complaint listed:

  • Booking form without labels
  • Contrast ratio of 2.8:1 on body text
  • Navigation menu not usable by keyboard
  • PDF intake forms without tags

The overlay had tools for enlarging text and changing contrast. It did not fix the booking form or PDF.

The dentist said, “The widget said we were compliant.”

The settlement required full remediation. The overlay stayed on the site but did not count toward compliance.

They paid for remediation twice.


why overlays appeal to business owners

Overlays are cheap. A typical subscription costs $49 to $149 per month. Full remediation for a mid-size site often costs $5,000 to $20,000.

Small businesses want the cheaper option.

Overlay companies use phrases like:

  • “Instant compliance”
  • “One line of code”
  • “Automated WCAG certification”

There is no WCAG certification process. The World Wide Web Consortium publishes standards. It does not certify websites.

That gap in understanding is where overlays sell.


the domino’s case and what it actually showed

In 2019, the U.S. Supreme Court declined to review a Ninth Circuit decision involving Domino's Pizza. The ruling said a blind plaintiff could pursue claims that Domino’s website and app were inaccessible.

Domino’s argued that the ADA lacked clear technical standards. The court said businesses still must provide access.

The case did not mention overlays. It did show that courts look at actual access. Not software claims.

If a customer cannot order pizza using a screen reader, the system fails.

Same logic applies to booking medical appointments or paying invoices online.


accessibility professionals and the overlay backlash

In August 2021, more than 600 accessibility professionals signed an open letter criticizing overlay products. The letter said overlays often fail to fix core accessibility problems and can interfere with assistive technologies.

Signatories included developers, consultants, and users of screen readers.

Some overlay companies responded with lawsuits over defamation claims. The debate became public.

That conflict revealed a real split: people who build accessibility software vs. people who rely on assistive tech daily.

Blind users often report that overlays create keyboard traps or duplicate controls.


the technical limits of overlays

Overlays operate after page load. They cannot rewrite server logic.

Problems they cannot reliably fix:

Forms
A missing label requires editing HTML. Injected labels may not map correctly.

Keyboard navigation
If a dropdown menu relies on mouse hover, JavaScript overlays can’t rewrite event handlers consistently.

Dynamic content
React or Angular apps may re-render content after overlay scripts run.

Third-party integrations
Scheduling tools, payment processors, chat widgets inside iframes remain inaccessible.

PDFs
Overlays cannot tag PDFs stored on the server.

Video captions
Speech-to-text auto-captioning is inaccurate without human editing.

These are structural issues.


what the department of justice has said

The Department of Justice has not issued regulations specific to website accessibility. It has issued settlement agreements referencing WCAG 2.1 AA.

In March 2022, the DOJ settled a case with Hy-Vee grocery stores requiring WCAG conformance for its online services.

These agreements focus on code remediation, staff training, and ongoing audits. Not overlays.

The DOJ’s guidance document “Accessibility of State and Local Government Websites to People with Disabilities” mentions WCAG techniques, not widgets.

The pattern is clear.


overlays and seo myths

Overlay vendors claim accessibility widgets improve SEO. There is no evidence from Google supporting that claim.

Google’s John Mueller said in 2020 that accessibility improvements can help users and search engines, but plugins alone don’t guarantee ranking improvements.

Search engines read HTML structure. If a site has poor headings, missing alt text, or unreadable PDFs, overlays do not change the underlying markup that search engines crawl.

SEO gains come from better structure, descriptive content, and faster performance. Those changes often overlap with accessibility work.

Overlays don’t rewrite site architecture.


another anecdote: car dealership site

In May 2024, I audited a used-car dealership website in Ohio. They had an overlay installed for two years.

The overlay offered font size controls and a text reader. But their inventory pages used images for vehicle descriptions. No alt text. No text layer. Screen readers announced “image image image.”

Their trade-in form required dragging a slider with a mouse.

The overlay had no effect on those issues.

They paid $11,000 for remediation after receiving a demand letter.

The owner said, “The widget was cheaper until it wasn’t.”


overlays can create new accessibility problems

Some overlays inject duplicate navigation menus or hidden elements.

Screen readers may read menus twice. Keyboard users may get trapped in loops.

In 2022, a blind user in Chicago reported that an overlay added 50 extra tab stops on a retail site. Navigation became unusable.

Developers had to remove the overlay before fixing the code.

Accessibility that creates new barriers is still a violation.


why overlay marketing works anyway

Most business owners do not read WCAG. It is technical. More than 80 success criteria across WCAG 2.1.

Overlay vendors simplify the message.

“Add one script. Be compliant.”

The message spreads through web design agencies that don’t specialize in accessibility.

In 2023, I saw three agency proposals in Texas that included overlay subscriptions as a line item labeled “ADA compliance solution.”

None included manual audits.

The agencies weren’t malicious. They didn’t understand the legal standard.


what real accessibility remediation looks like

Actual remediation includes:

  • Manual audit using keyboard and screen readers
  • Fixing HTML structure
  • Rewriting forms
  • Adjusting color contrast
  • Captioning videos
  • Tagging PDFs
  • Testing with assistive tech

This work takes time. It often costs thousands of dollars. It also produces measurable results.

For example, a dermatology clinic in Chicago fixed heading structure and contrast issues in 2023. Their bounce rate on procedure pages dropped from 72% to 54% over four months.

Better readability helps everyone.


trade-offs and criticisms of overlay opposition

Not every overlay feature is useless.

Some widgets help users adjust contrast or font size. That can help people with low vision. Some screen readers benefit from simplified page modes.

The problem is not the features. The problem is marketing claims that say overlays replace remediation.

Accessibility advocates sometimes reject overlays entirely. That can be too rigid. Widgets can be supplemental tools.

They cannot be the only tool.


how lawsuits describe overlay failures

Complaints often include screenshots of accessibility widgets on the site. Then they list WCAG violations anyway.

Typical allegations:

  • Missing alt text
  • Inaccessible forms
  • Keyboard traps
  • Poor contrast

The overlay becomes evidence that the business knew accessibility mattered but did not fix the code.

Courts don’t accept a widget as proof of compliance.


the economics of overlay use

Overlay subscription: $600 to $1,800 per year.

Full remediation: $5,000 to $25,000 for a small to mid-size site.

Demand letter settlement: $10,000 to $25,000 plus remediation.

Businesses pick overlays because the upfront cost is low.

But they still face remediation later.


accessibility certification myths

Overlay vendors often claim they provide “WCAG certification.”

There is no official WCAG certification body. The W3C publishes guidelines. It does not certify sites.

Accessibility statements sometimes include audit reports from consultants. That is documentation, not certification.

When a vendor claims certification, ask for the issuing authority. Usually there is none.


what to check if a vendor promises instant compliance

Look for these red flags:

  • Claims of 100% compliance without manual testing
  • No discussion of WCAG success criteria
  • No plan for PDF remediation
  • No training for content staff
  • No annual audit schedule

Accessibility is ongoing. Widgets are static scripts.


overlays in healthcare websites

Healthcare sites are frequent overlay customers because they have appointment booking tools and patient portals.

In 2024, a clinic in Dallas installed an overlay after reading a blog post promising instant ADA compliance.

Their telehealth login still required a CAPTCHA with no audio option. Blind patients couldn’t log in.

The overlay could not fix the CAPTCHA.

They replaced the telehealth platform.


what regulators are likely watching

The FTC action against AccessiBe focused on false advertising. That is the key issue.

If a company says “our product guarantees ADA compliance,” regulators may look at that claim.

Accessibility software can be useful. False claims are not.

Businesses should read marketing language carefully. Vendors are responsible for their claims. Businesses still face lawsuits for inaccessible sites.


the reality businesses need to understand

ADA website compliance is measured against WCAG 2.1 AA. Courts look at whether users with disabilities can complete tasks.

Overlays do not rewrite source code. They do not fix structural accessibility issues. They can add tools that help some users.

They cannot replace remediation.

The FTC has already fined a company for claiming otherwise. Lawsuits continue against sites that rely only on widgets. Accessibility work still requires audits, code changes, and ongoing maintenance.

That is the operational reality.