Accessible LibGuides are well structured and follow a logical reading order. This helps users with screen readers access your content. Presenting content in a logical reading order also benefits patrons accessing your guide via the mobile version of LibGuides, which presents content in a single column.
This presentation from February 2018 outlines many of the LibGuide accessibility basics (Google Slides).
LibGuides are already fairly accessible, but can be made even more so by using these tips:
Copy and paste these into the Guide Custom JS/CSS box, which is located under Guide Layout.
This allows you to take advantage of accessible elements like headings, bulleted lists, list of links, etc. while maintaining control of your guide's overall appearance.
<style>
div.s-lib-box-container
h2.s-lib-box-title
{
font-size:NNpx;
}
</style>
(replace bolded NN with size of your choice)
<style> h3 { font-size:NNpx; font-weight: bold; } </style> (replace bolded NN with size of your choice) Follow the same steps for h4, h5, etc.
<style> a { font-weight: bold; font-size:NNpx; } </style> (Replace bolded NN with size of your choice. This will change the size of text in your lists)
<style> ul.s-lg-link-list { list-style-type: none; padding:0px; margin:0px } </style>
When you embed media, such as a video, Google form or search widget into your guide, LibGuides uses a "container" called an iframe to display the media on your page. One way to make iframes more accessible is to add a title, so that the user knows what he or she has encountered on the page.
LibGuides does not automatically assign meaningful titles to iframes, but you can do so yourself when embedding media into your guide. This is a quick bit of text that you will add directly into beginning of the embed code.
Paste directly after the word "iframe" at the beginning of your embed code.
title=”replace this text with a descriptive title of your media”
These examples show the unmediated code, and a more accessible mediated version where a descriptive title was added.
<iframe id="kaltura_player" src="https://cdnapisec.kaltura.com...
<iframe title=”Video tutorial answering common questions about SearchPlus” id="kaltura_player" src="https://cdnapisec.kaltura.com...