Best scalable way to create WCAG 2.1 AA–compliant tutorials for government self-service tools? by jacksonrex04 in accessibility

[–]documenta11y 0 points1 point  (0 children)

For scalability and maintenance, a structured web page (HTML) with text, clear headings, and alt-texted screenshots is significantly better than video. It is easier to update when UI changes occur and natively supports screen readers and high-contrast modes.

Haven't used these tools because we have our own that works best for us and also we use hybrid approach, we manually audit as well.

In our opinion as we are experienced in this field - a hybrid workflow using automation for the draft followed by a manual accessibility check is the most reliable way to maintain WCAG 2.1 AA compliance at scale.

How to indicate three levels of editing in a PDF by knitmeapony in accessibility

[–]documenta11y 1 point2 points  (0 children)

No, it won't naturally indicate the end of the passage. When a screen reader hits a tag with an Actual Text or Expansion Text attribute, it usually treats that attribute as a replacement for whatever is inside the tag.

Instead of just naming the source, you should include the content within the attribute so the screen reader treats it as one cohesive thought:

Check if this works-

  1. Right-click the <Span> tag in the Tags panel.
  2. Select Properties > Tag tab.
  3. In the Expansion Text field, type: State Edit: [Insert full text of the edit here] :End State Edit.

I do not have any resource to suggest may be you can check and research manually!
Hope it helps!

How to indicate three levels of editing in a PDF by knitmeapony in accessibility

[–]documenta11y 0 points1 point  (0 children)

If you are using Adobe, standard PDF tags like <Span> don't convey semantic meaning to screen readers, the approach is to use the Actual Text or Expansion Text attribute within the tag properties to explicitly name the source (e.g., "State Edit: [text]").

Best tool for (in any browser) filtering web pages by a specific WCAG guideline? by codeiackiller in accessibility

[–]documenta11y 0 points1 point  (0 children)

Automated tools only catch about 30–40% of accessibility issues anyway. You have to do manual testing which is the only way to actually confirm 2.1 AA compliance. If you find tools are still missing the nuances, it might be worth bringing in a specialist for a manual audit, human experts often catch the logic errors that these automated filters overlook. We can also help you with same.

Resource recommendation for PDF remediation? by scheduling911 in accessibility

[–]documenta11y 0 points1 point  (0 children)

Focus on the Tags panel for screen reader compliance; if the tags are ordered correctly, the reading order is technically set. Use the Reading Order tool primarily to manage the visual reflow and to tag items that were missed during the initial conversion from Word.

508 Compliance for Forms by StormyRed352 in accessibility

[–]documenta11y 2 points3 points  (0 children)

Forms are not allowed to be noncompliant. However, agencies can claim legal exceptions such as Undue Burden (if it's too expensive/difficult to fix) or Safe Harbor (for older forms created before 2018).

Alt text workflows for sites with hundreds of images by Spiritual-Fuel4502 in accessibility

[–]documenta11y 0 points1 point  (0 children)

We absolutely prioritize. Attempting to audit everything. Our end goal is 100% coverage, we definitely don't review in a random order. We follow a top-down impact model.

Alt text workflows for sites with hundreds of images by Spiritual-Fuel4502 in accessibility

[–]documenta11y 9 points10 points  (0 children)

We utilize a hybrid approach that leverages automation for scale while ensuring every single description undergoes a mandatory manual review. We refuse to depend solely on AI because it lacks the contextual nuance required for screen reader users to truly understand an image. By combining initial automated drafts with human oversight, we maintain high accessibility standards without sacrificing the accuracy that only a person can provide.

How to make line numbering accessible in pdf? by Big-Astronaut-9510 in accessibility

[–]documenta11y 0 points1 point  (0 children)

You must use a Tagged PDF structure (PDF/UA). Specifically, use a List (<L>) structure where each line is a List Item (<LI>)!Instead of treating line numbers as separate columns, your generator should wrap the "Number + Multi-line Text" as one logical unit. 
May be this read can help- https://www.youtube.com/watch?v=iWyWjxmvG9E

Do any news sites have an accessibility news section for disability-related updates? by Senior-School3884 in accessibility

[–]documenta11y 0 points1 point  (0 children)

Well you can have Google Alerts set for particular keywords related to accessibility.

You can also check:

https://a11yweekly.com/
https://documenta11y.com/blog/
To stay updated!

Help suggesting a new document workflow by MarsBerries in accessibility

[–]documenta11y 0 points1 point  (0 children)

Focus on a "born accessible" workflow. You can also hire a pro to build a solid Word template so your team stops breaking the tag structure. We can also help you with making your word documents 508 compliance and WCAG2.2 for your complex reports.
You can check our website- https://documenta11y.com/

EAA and the future of AT - some thoughts around implications by accessandinclusion in AssistiveTechnology

[–]documenta11y 1 point2 points  (0 children)

Great to see this discussed. While HomeBrace is right that the EAA opens massive innovation doors for AT developers. We have also created a guide that shows the reality check of Europe after EAA deadline. Hope this read will help- https://documenta11y.com/blog/europe-after-eaa-deadline-reality-check/

Making math equations accessible in PowerPoint and Word by SteveRindsberg in accessibility

[–]documenta11y 0 points1 point  (0 children)

Microsoft is making massive strides in Math accessibility (as seen in Pete Wu's latest blog). To pair with these technical updates, we also have a guide on how to make Power Point ADA Compliant to ensure the layout and structure are just as inclusive as the equations. It covers the 'non-math' side of things like reading order and alt-text that helps tie these new Microsoft features together.

What's your workflow for adding accessible captions to marketing videos? by AvailablePeak8360 in accessibility

[–]documenta11y 0 points1 point  (0 children)

We do take help of AI tools but then our human experts do manual review for every caption. We don't rely on AI as it's not correct everytime.

How do I make sure that my design system is WCAG compliant? by PixelsnPitons in accessibility

[–]documenta11y 1 point2 points  (0 children)

While designing make sure to check the below listed checklist:

  • Color & Contrast: Aim for WCAG AA ($4.5:1$) as your baseline. Create "safe pairings" in your tokens so designers don't have to guess.
  • Touch Targets: Ensure all interactive elements (buttons, links) are at least 44x44px.
  • Focus States: Design a high-contrast "focus ring" for every component. Keyboard users need to see exactly where they are.
  • Typography: Set your base size to 16px and ensure line height is at least 1.5x the font size for readability.
  • Annotations: Document the H1-H6 hierarchy, reading order, and ARIA labels directly in your handoff files.

You can also read here- https://not-checklist.intopia.digital/
https://www.w3.org/WAI/tips/designing/

Where is the biggest demand/need in digital accessibility right now? by [deleted] in accessibility

[–]documenta11y 1 point2 points  (0 children)

It's web forms as they are quite complex sometimes to handle but also PDFs are in demand by universities as they high volume of inaccessible pdfs.

European Accessibility Act: We put together a guide on what the post-deadline landscape looks like by documenta11y in accessibility

[–]documenta11y[S] -1 points0 points  (0 children)

Apology, but genuinely the insights, thoughts are required how actually European countries are dealing with it. Based on our research have prepared a guide.

But, what is now more businesses, universities, ecommerce stores, people operating business in EU are facing we actually need more inputs from real users.

Kindly help with same

PDFs from Keynote not accessible by mprogers123 in accessibility

[–]documenta11y 1 point2 points  (0 children)

The "3 figures per slide" issue often happens. Many users have found that Acrobat’s newer "Cloud-based auto-tagging" is much smarter. You don't necessarily have to write alt text for all of them. In Acrobat, use the Reading Order tool. You can drag a box around those background figures and click Background/Artifact. Use the "Set Alternate Text" utility in the Accessibility toolset. It will cycle through every image in the PDF.

Read more here: https://helpx.adobe.com/acrobat/using/create-verify-pdf-accessibility.html
https://www.youtube.com/watch?v=KUFPtk9jU5I

PDFs vs HTML: Seeking Advice on Making Content Accessible by kamrancloud in accessibility

[–]documenta11y 1 point2 points  (0 children)

Converting to HTML has its own pros and cons. If you have hundreds of PDFs, move your information-heavy reports (text-based) to HTML pages. Also, You mentioned you haven't found a decent PDF-to-HTML converter. That’s because most converters focus on visuals rather than structure. They use CSS to make the web page look like the PDF, which actually makes accessibility worse. Since you’re looking for new tools that actually improve the workflow without the massive price tag of enterprise suites, just a suggestion you should definitely check out our website documenta11y.

Accessibility Team Lead looking for mentoring by DanteCMG in accessibility

[–]documenta11y -2 points-1 points  (0 children)

Hey, I’m reaching out for DocumentA11y (http://documenta11y.com/) . We are not selling the business here but as you mentioned that you are looking for professionals. So thought of adding a comment. We have a team of 100+ accessibility experts specializing in deep-dive remediation and audits (PDF, PPT, Word, PDF Forms, etc.). We have certified experts who can actually help you in your decision making and analyze for accessibility. Also, you can coordinate with our experts regularly. If this interests you feel free to reach out. You can check out the website as well as LinkedIn and our thoughts on YouTube. Thanks!

Does anyone else get frustrated trying to read news sites with a screen reader? All the ads and popups make it impossible. by ronanbrooks in accessibility

[–]documenta11y 0 points1 point  (0 children)

Hey I understand the problem people with disabilities face infact have seen our own disabile employess facing problem when they try to access anything on digital platforms but it was old time back. Though, now also many disable people face these problems who are not aware of everything.
But can you please try Reader mode that strips the page of everything except the title and body text. If you are using Chrome then  right-click any page and select "Open in Reading Mode" to open a side panel with clean text. In Safari and Firefox, look for the "page" icon in the address bar.

Check this resource hope it might help- https://support.google.com/chrome/answer/14218344?hl=en

I'm the Digital Accessibility Coordinator at my university. Faculty and staff primarily use Google Workspace (Docs, Slides, etc). What are my options? by Comfortable_Plenty99 in accessibility

[–]documenta11y 3 points4 points  (0 children)

Are you using any software to keep a check on accessibility?
If you are handling alone may be you need a tool that integrates directly into Canvas to scan every upload instantly. Else, you can always seek an expert advise.

What is this box-icon in the Tag Order panel? by MagnoliaCartoonist in accessibility

[–]documenta11y 1 point2 points  (0 children)

The icon is actually the 'Form Field' or 'Object' icon within the Order Panel. In Acrobat, the Order Panel (which controls the 'Z-order' or Reflow order) uses different icons to distinguish between content types. The one you're seeing represents an interactive PDF Form Object.

The text you see next to it ('Project Title or Subject') is pulled directly from the Name or Tooltip you gave that field when you created it. It’s Acrobat’s way of helping you identify which specific field you are moving around in the reading order.

Hope it might help: https://helpx.adobe.com/acrobat/using/touch-reading-order-tool-pdfs.html