Hello, I need to get my site up to speed with accessibility requirements. I have two issues that the accessibility checker found:
issue The site logo (I use a free Joomlart Purity III template). Where can I find the file to make the image decorative only and put a null (empty) text ( alt="")?
The accessibility checker says: The link to the image contains both alt text and surrounding link text. If the image is decorative and is used as a functional link to another page, consider marking the image as decorative or null - the surrounding link text should be sufficient.
issue I have an audio player with small music audio files. How can I add a verbatim transcript of the audio file in html below the audio player?
The accessibility checker says: Make sure to provide a transcript for all podcasts. Providing transcripts for audio content is a mandatory Level A requirement. Transcripts are intended to support people who are deaf or hard of hearing, but can be useful to anyone. Consider including the transcript at the bottom or in an accordion panel.
Any suggestions? Thanks!
Hello
1&2: You can find the declaration for logo in the header block of this template:
root/templates/purity_iii/tpls/blocks/header.php
3&4: I'm not sure which audio player you're using, where do you add it?
saguaros 1&2. I solved the logo thanks!
3&4. The audio player is a plugin called: Simple Audio Player Shortcode - I add it in the articles with: <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">xxxxx</h3> </div> <div class="panel-body"> [audio src="xxxx/xxxx.mp3" background="#444444" width="100%"] </div> </div> How can I implement a verbatim transcription compliant with accessibility?