Moodle Best Practice Guide
Accessibility fundamentals

Check your existing content

Before you begin to work on new content, it's worth revisiting what you already provide students. Moodle provides a tool for checking your content for problems with accessibility, called the Accessibility Checker. This is a button found in the default text editor, Atto, which scans your content and warns you of any potential issues. This is a useful tool to double check your content, but it would not be advisable to totally rely on this check.

Moodle's Atto text editor documentation lists a number of different points that this tool will check your content for:

  • blue triangle with the point facing right
    Images with missing or empty alt text (unless they have the presentation role).
  • blue triangle with the point facing right
    Contrast of font colour and background colour meets  WCAG AA guidelines.
  • blue triangle with the point facing right
    Long blocks of text are sufficiently broken up into headings.
  • blue triangle with the point facing right
    All tables require captions.
  • blue triangle with the point facing right
    Tables should not contain merged cells as they are difficult to navigate with screen readers.
  • blue triangle with the point facing right
    All tables should contain row or column headers.

How you can improve accessibility

#1 Add alt text to images

Adding alternate text (alt text) to images in Moodle is simple, won’t take you long and is essential to ensure screen readers are able to describe to the user what the image shows. When you add an image to your site, you’ll notice a box asking you to ‘describe this image for someone who cannot see it’, simply type in an informative and appropriate description for the image before you save it.

This is what gets added to the HTML code:

<img src="http://moodle.port.ac.uk/draftfile.php/115/user/draft/580539772/vacine2.jpg" alt="An image of blood cells" width="500" height="109" class="img-fluid border rounded">

Screenshot of the image properties dialog box
#2 Add audio transcripts to video

Transcripts for audio (and video) content are required by those who can’t hear to be able to consume audio that you may produce. If for example you produce a audio recording, you should also provide a text transcript of the audio. Moodle allows you to link subtitle, caption, description & chapter files to videos and audio you add to your sites via the interface shown in this image. You have to supply these as WebVTT files, which are designed to sit alongside video and audio. You may need to ask assistance from your Online Course Developers if you would like to create these types of files.

A Web Video Text Track (WebVTT) file is a standard format used to add captions to web video. The standard originated from the Web Hypertext Application Technology Working Group (WHATWG) specifically to support text tracks in HTML5. You can read more about this format, including this resource on how to structure a WebVTT file.

captions

If your content is from YouTube, you’ll find that there is an automatic captioning feature that will attempt to convert the audio from speech to text, this is never perfect, but can often be a good starting point for you to be able to edit this text further.

#3 Create meaningful structure

Your content should have a structure. Using headings in digital content doesn’t only make your information easier to read and navigate for everyone, it’s also vital for those who use assistive technologies as they navigate the page.

Below you can see a test page that we have created using the default Atto text editor in Moodle. It contains a series of headings with information beneath each one. We didn’t write this code, it was created by the editor when we selected the level of heading we wanted for each section:


<h3>All about Van Gogh</h3>
<p>This is the content that leads the page.</p>
<h4>His early life</h4>
<p>This title is useful for separating content into sections.</p>
<h4>Later life and his death</h4>
<p>This heading is the same level as the previous one, as this section holds information that is equal in importance to that of the first section.</p>
<h5>The loss of the ear</h5>
<p>This is a tertiary section, with a heading of a lower weight.</p>
captions

What you can see from this is that in this content, the top level heading or ‘Heading (large)’ is coded as an <h3> tag in the code. This is because Moodle itself already uses the <h1> and <h2> tags in its structure. This is explained in more detail in the Typography section of the content guide

Moodle screenreader helper

The Screenreader Helper, again found in the default Atto editor, is used to improve the ability of a screen reader to ‘see’ into an editable box, such as the one you see when adding content to a page or book in Moodle. It is something that is useful for content creators that use assistive technologies rather than the audience for the content themselves.