Skip to main content

Accessibility for Radancy CMS Publishers

Why is Accessibility Important? Anchor ()

WYSIWYG ≠ Perfection Anchor ()

WYSIWYG (What You See Is What You Get) editors are useful tools that allow for greater, customized control over our digital content, but the output of that content and how it imapcts disabled users, is only as good as the effort an author puts in. The greater care one takes for the craftsmanship of their content, the more accessible it will be. This document will help you to address common issues that impact disabled users.

Common Issues Anchor ()

Headings Anchor ()

Assistive technology (AT) users can access all of the headings on the page to better understand and navigate that content. The more clear and structured your headings are, the easier this task will be.

TODO: Add something more clear on hierarchy.

TODO: Show examples of or proper heading structure and possible screen reader demo of heading navigation.

TODO: Share example of link that uses “click here” and suggested alternatives that can be used.

TODO: Show example of this issue in actual screen reader link list.

A Note on Hyperlinks that Open New Window Tabs

See Guidance on Designing For and Implementing New Windows

Alternative Text Anchor ()

Images Use In Hyperlinks

Single images wrapped within hyperlinks must contain alternative text, even if they are decorative. However, the text should be more functional in nature. Here is an example that might link to a YouTube video:

<a href="...">

    <img src="..." alt="My Summer Vacation (Video)">

</a>

The only exception to this rule is if adjacent or nearby text is present within the link, too. Here, no alternative text is really required because the content in the element is already sufficient.

<a href="...">

      <img src="..." alt="">
      <span>My Summer Vacation</span>

</a>

Alternative Text Resources

Testing Your Work Anchor ()

WAVE, AxE, Lighthouse, New Tool for Clients