Beyond Overlays: Accessibility Solutions That Actually Work
Accessibility overlays promised an easy solution: add a JavaScript widget and magically become accessible. The reality has been starkly different. Organizations using overlays face lawsuits at similar rates to those using nothing at all, while disability advocates overwhelmingly reject overlay approaches. With 95.9% of websites still failing basic WCAG requirements and 8,800 ADA lawsuits filed in 2024, organizations need solutions that actually work. This guide examines why overlays fail and presents proven alternatives that deliver genuine accessibility compliance and better user experiences.
Key Takeaways
Choosing the right accessibility approach has significant legal, financial, and ethical implications. Here are the essential points:
- Overlays do not provide legal protection and may increase lawsuit risk by creating a false sense of compliance
- Over 800 accessibility advocates signed the Overlay Fact Sheet opposing overlay use
- Real accessibility requires fixing source code, not adding a presentation layer
- Effective alternatives include manual remediation, automated testing integration, and design system improvements
- Long-term accessibility is more cost-effective than recurring overlay subscriptions
Why Accessibility Overlays Fail
The Technical Reality
Overlays attempt to modify the presentation layer of websites without changing underlying code. This approach has fundamental limitations:
Screen Reader Conflicts: Overlays inject JavaScript that can interfere with assistive technology. Screen reader users often disable overlays immediately because they disrupt established navigation patterns and reading flows.
WCAG Coverage Gaps: Independent analysis shows overlays address only 20-30% of potential WCAG failures. Issues like heading structure, form associations, and keyboard traps require source code changes that overlays cannot provide.
Performance Impact: Adding JavaScript payloads increases page load times. Some overlays add 200-500KB to pages, directly impacting Core Web Vitals and user experience.
Maintenance Dependencies: Overlays must continuously adapt to website changes. When sites update, overlay fixes often break, creating ongoing accessibility gaps.
What Overlays Actually Do
Understanding overlay functionality reveals their limitations:
+-------------------------+----------------------------------+----------------------------------------------------+
| Overlay Feature | What It Claims | Reality |
+-------------------------+----------------------------------+----------------------------------------------------+
| Screen reader mode | Optimizes for screen readers | Screen reader users already have optimized settings; overlay modes often interfere |
+-------------------------+----------------------------------+----------------------------------------------------+
| Contrast adjustment | Fixes color contrast | User browsers already offer contrast settings; doesn't fix source code for other users |
+-------------------------+----------------------------------+----------------------------------------------------+
| Text sizing | Increases font size | Browser zoom already provides this; doesn't help users with default settings |
+-------------------------+----------------------------------+----------------------------------------------------+
| Keyboard navigation | Improves keyboard access | Cannot fix underlying code issues like missing focus indicators or keyboard traps |
+-------------------------+----------------------------------+----------------------------------------------------+
| Alt text generation | Adds missing alt text | AI-generated alt text is frequently inaccurate and context-inappropriate |
+-------------------------+----------------------------------+----------------------------------------------------+Legal Protection Myth
Overlays are often marketed as lawsuit prevention tools. The evidence contradicts this claim:
Lawsuit Data: Analysis of 2024 ADA lawsuits shows that websites using major overlay products face lawsuits at rates comparable to or higher than websites without overlays. Multiple lawsuits specifically name overlay vendors.
Court Recognition: Courts have consistently held that overlays do not constitute good faith efforts toward compliance. The presence of an overlay has not prevented summary judgment against defendants.
Settlement Patterns: Organizations using overlays often settle for similar amounts as those without, suggesting overlays provide no legal leverage.
FTC Scrutiny: The Federal Trade Commission has investigated overlay vendor marketing claims, signaling regulatory concern about misleading accessibility promises.
The Disability Community Perspective
The Overlay Fact Sheet
Over 800 accessibility advocates, developers, and disability rights professionals signed the Overlay Fact Sheet (overlayfactsheet.com), documenting concerns including:
- Overlays create barriers rather than removing them
- Overlay features are redundant with existing browser and OS capabilities
- The approach treats disabled users as an afterthought rather than addressing root causes
- Marketing claims misrepresent overlay capabilities
- Overlays can expose disabled users to tracking and privacy risks
User Experience Testimony
Disabled users consistently report negative experiences with overlays:
Screen Reader Users: Report that overlays interfere with established navigation patterns, create unexpected focus behaviors, and add cognitive load to already complex interactions.
Keyboard Users: Find that overlay interfaces themselves often have keyboard accessibility issues, and overlay changes to underlying pages can break existing keyboard functionality.
Low Vision Users: Note that system-level contrast and zoom settings work better than overlay alternatives, and overlay icons consume screen real estate without providing value.
Cognitive Disabilities: Experience confusion from unfamiliar overlay interfaces and additional decisions required to configure settings that should be default.
Effective Overlay Alternatives
1. Source Code Remediation
What It Is: Fixing accessibility issues directly in HTML, CSS, and JavaScript source code to address root causes rather than symptoms.
Why It Works: Source code fixes persist across sessions and users, work with all assistive technologies, and provide genuine WCAG compliance.
Implementation Approach: ```html <!-- Before: Missing accessible name --> <button><i class="icon-search"></i></button>
<!-- After: Accessible button --> <button aria-label="Search"> <i class="icon-search" aria-hidden="true"></i> </button> ```
Cost Comparison: | Approach | Year 1 Cost | Year 2+ Cost | Coverage | |----------|------------|--------------|----------| | Overlay subscription | $2,000-5,000 | $2,000-5,000 | 20-30% | | Source remediation | $5,000-15,000 | $1,000-3,000 (maintenance) | 80-95% |
2. Automated Testing Integration
What It Is: Embedding accessibility testing into development workflows to catch and fix issues before deployment.
Why It Works: Prevention costs less than remediation. Catching issues during development requires minutes to fix versus hours post-deployment.
Tools and Integration:
// Example: axe-core in CI/CD pipeline
const axe = require('axe-core');
describe('Accessibility Tests', () => {
it('should have no accessibility violations', async () => {
const results = await axe.run(document);
expect(results.violations.length).toBe(0);
});
});Popular Platforms:
- TestParty: Developer-first approach with IDE integration
- axe DevTools: Comprehensive testing with guided remediation
- Lighthouse CI: Free, integrates with GitHub Actions
- Pa11y: Open-source command-line testing
3. Design System Accessibility
What It Is: Building accessibility into reusable component libraries so every implementation is accessible by default.
Why It Works: Fixing accessibility once in a shared component fixes it everywhere that component is used. Consistency reduces errors and training requirements.
Implementation:
// Accessible button component
function Button({ children, onClick, variant = 'primary' }) {
return (
<button
className={`btn btn-${variant}`}
onClick={onClick}
// Ensures minimum target size per WCAG 2.5.8
style={{ minWidth: '44px', minHeight: '44px' }}
>
{children}
</button>
);
}Benefits:
- Accessibility becomes automatic for developers
- Reduces training burden for large teams
- Ensures consistent implementation across products
- Simplifies testing and maintenance
4. Continuous Monitoring
What It Is: Ongoing automated scanning to detect accessibility regressions and new issues as content changes.
Why It Works: Websites change constantly through content updates, feature additions, and third-party integrations. Continuous monitoring catches issues before they become legal liabilities.
Monitoring Platforms:
- Siteimprove: Scheduled scanning with trend tracking
- Pope Tech: Multi-site monitoring with role-based access
- Silktide: Combined accessibility and content monitoring
- Monsido: Governance-focused monitoring
5. User Testing with Disabled Users
What It Is: Including people with disabilities in usability testing to identify issues that automated tools miss.
Why It Works: Automated tools catch approximately 30% of issues. Real users identify usability problems, cognitive load issues, and interaction patterns that tools cannot evaluate.
Services:
- Fable: On-demand testing with disabled users
- Knowbility: User testing and expert evaluation
- Accessible360: Managed testing programs
- AbilityNet: UK-based user testing services
Implementation Roadmap
Phase 1: Assessment (Weeks 1-2)
- Audit Current State: Conduct comprehensive accessibility audit using multiple tools
- Inventory Issues: Categorize findings by severity, frequency, and remediation effort
- Identify Patterns: Look for systemic issues (component library problems, CMS limitations)
- Establish Baseline: Document current compliance level for future comparison
Phase 2: Quick Wins (Weeks 3-4)
Focus on high-impact, low-effort fixes:
- Add missing alt text to images
- Fix color contrast issues
- Add labels to form fields
- Ensure link text is descriptive
- Fix heading structure
Phase 3: Systematic Remediation (Weeks 5-12)
Address structural issues:
- Update component library with accessible versions
- Fix keyboard navigation throughout site
- Implement skip links and landmark regions
- Address focus management in dynamic content
- Test and fix all interactive elements
Phase 4: Process Integration (Ongoing)
Prevent future issues:
- Add accessibility to design review checklist
- Integrate automated testing in CI/CD pipeline
- Train development and content teams
- Establish monitoring and alerting
- Schedule regular audits and user testing
Cost Comparison: Overlays vs. Real Solutions
Total Cost of Ownership
+----------------------------------+--------------------+------------------------+
| Factor | Overlay | Source Remediation |
+----------------------------------+--------------------+------------------------+
| Year 1 software | $3,000 | $8,000 |
+----------------------------------+--------------------+------------------------+
| Year 1 services | $0 | $12,000 |
+----------------------------------+--------------------+------------------------+
| Year 2+ software | $3,000/year | $2,000/year |
+----------------------------------+--------------------+------------------------+
| Legal risk reduction | Minimal | Substantial |
+----------------------------------+--------------------+------------------------+
| User experience | Degraded | Improved |
+----------------------------------+--------------------+------------------------+
| 5-year total | $15,000 | $26,000 |
+----------------------------------+--------------------+------------------------+
| Lawsuit settlement (if sued) | $25,000-75,000 | Reduced risk |
+----------------------------------+--------------------+------------------------+Hidden Overlay Costs
Organizations using overlays often incur additional costs:
- Lawsuit defense: Legal fees regardless of outcome
- Reputation damage: Negative attention from disability community
- Remediation anyway: Eventually required after lawsuit
- Performance impact: Slower pages affect conversion rates
- Support tickets: Users complaining about overlay interference
Case Studies
E-Commerce Retailer
Situation: Mid-sized retailer using overlay after receiving demand letter.
Overlay Period:
- Paid $4,800/year for overlay
- Received lawsuit 8 months after implementation
- Settled for $45,000 plus requirement to remediate
After Switching:
- Invested $18,000 in comprehensive remediation
- Implemented automated testing in deployment pipeline
- No legal issues in subsequent 24 months
- Reported improved conversion rates among older users
Financial Services Company
Situation: Regional bank seeking compliance with minimal disruption.
Overlay Period:
- Overlay conflicted with online banking security features
- Customer complaints about interface changes
- Compliance audit failed despite overlay presence
After Switching:
- Redesigned component library with accessibility built-in
- Trained 40 developers over 3 months
- Passed compliance audit
- Customer satisfaction scores improved
Frequently Asked Questions
If overlays don't work, why do so many companies use them?
Overlays are marketed heavily with claims of easy compliance and lawsuit protection. The low initial price point appeals to organizations seeking quick solutions. Many buyers lack accessibility expertise to evaluate claims critically. As awareness of overlay limitations spreads, adoption is declining among informed organizations.
Can I use an overlay temporarily while working on real remediation?
This is strongly discouraged. Overlays can interfere with assistive technologies, potentially making your site less accessible. They create a false sense of progress that may delay genuine remediation. Courts have not recognized overlays as good faith efforts, so they provide no legal protection during the transition period.
How much does proper accessibility remediation cost compared to overlays?
Initial remediation typically costs 3-5x more than a year of overlay subscription. However, maintenance costs decline significantly after initial remediation, and the work provides genuine compliance rather than surface-level features. Over a 3-5 year period, remediation often costs less than continuous overlay subscriptions while providing actual protection.
What percentage of WCAG issues can automated tools catch?
Automated tools typically identify 30-40% of WCAG failures. They excel at catching color contrast, missing alt text, and structural issues. They cannot evaluate content quality, interaction patterns, or cognitive accessibility. Comprehensive accessibility requires combining automated testing with expert review and user testing.
Are there any legitimate uses for overlay-style features?
Some accessibility features (text resizing, contrast adjustments) are legitimate when offered as user preferences within properly designed sites. However, these features are redundant with browser and OS capabilities. The ethical approach is building accessible sites by default rather than requiring users to configure preferences.
How do I convince stakeholders to invest in real accessibility over overlays?
Focus on three arguments: (1) Legal protection - overlays haven't prevented lawsuits and may increase risk; (2) Business value - the $13 trillion disability spending power and 70+ million US adults with disabilities represent significant market opportunity; (3) Long-term cost - overlay subscriptions accumulate while remediation costs decline over time.
Related Resources
- Best Shopify Accessibility Tool 2025: A Complete Review
- How to Choose an Accessibility Vendor: Decision Framework
- Siteimprove Alternatives: Complete Comparison Guide
This article was crafted using a cyborg approach—human expertise enhanced by AI to deliver comprehensive, accurate, and actionable accessibility guidance.
Stay informed
Accessibility insights delivered
straight to your inbox.


Automate the software work for accessibility compliance, end-to-end.
Empowering businesses with seamless digital accessibility solutions—simple, inclusive, effective.
Book a Demo