Accessibility Request
-
On a card/photo that is a video and contains the Play svg on it could you change the role to role=”img” instead of role=”presentation”?
role=”presentation” means that this svg won’t get read by screenreaders so changing it to role=”img” will be better for accessibility.
Additionally you don’t need aria-hidden=”true” on anything that has an aria-label on it. aria-hidden means you want to hide this element from screenreaders.
On this example it looks like you are using a class to hide something so aria-hidden shouldn’t be used: <span class=”sbi_loader sbi_hidden” style=”background-color: rgb(255, 255, 255);” aria-hidden=”true”></span>
On this example it looks like you have role=”img” and an aria-label to describe that image so aria-hidden=”true” isn’t needed. <svg class=”svg-inline–fa fa-instagram fa-w-14″ aria-hidden=”true” data-fa-processed=”” aria-label=”Instagram” data-prefix=”fab” data-icon=”instagram” role=”img” viewBox=”0 0 448 512″></svg>
The page I need help with: [log in to see the link]
The topic ‘Accessibility Request’ is closed to new replies.