March 21, 2023
Recently I've been doing a lot of lived user accessibility testing, which involves observing people with disabilities using assistive technology to perform specific tasks on websites or apps. The goal is to identify the issues they encounter so the site owner can remedy them.
One issue I've frequently observed, which was totally unexpected for me, is uncertainty and confusion on the part of blind…
Continue reading
Accessible wording for form submit buttons
February 15, 2023
It's a nearly universal pattern in websites: the organization logo in the top left corner of the page, usually a link to the site homepage. But what text label should that link have?
How the label is provided isn't what we're dealing with here (usually it's by alt text on the logo graphic), but its wording.
Normally, I counsel developers and content editors to only include the visible text in an…
Continue reading
Should a site's linked logo include the word "Home" in the label?
April 26, 2022
Yesterday I had an interview for a front-end developer contract. The job would have involved overseeing a small front-end team rebuilding a suite of marketing sites on a strict deadline, specifically focused on improving performance.
I asked about the client's commitment to accessibility, and whether that was part of their redevelopment plan, only to be told no, it wasn't. Meeting their deadline…
Continue reading
Why I turned down a job for a client not interested in accessibility
September 16, 2021
The title of this post might seem a little surprising. Isn't alternative text supposed to describe the image?
That's the concept that's drilled into us, and it's what most people think of when writing alt text. However, in some situations, it's actually wrong. One of those situations is when the image is serving as the visible content of a control, such as a link or button which does not also…
Continue reading
Linked image alt text should not describe the image
September 10, 2021
Weird little accessibility note: using the CSS property display: table causes NVDA to announce the element as a table. (I'm not sure about other screen readers).
Putting role="presentation" on the element with this property stops it announcing as a table.
This is yet another reason you're better off using Flexbox or Grid for layout (as if we needed any more reasons). They're a lot more…
Continue reading
CSS table display property causes NVDA to announce a table
August 26, 2021
WCAG Success Criterion 1.4.4 Resize text states:
Except for captions and images of text, text can be resized without assistive technology up to 200 percent without loss of content or functionality.
The reason for this is pretty obvious: people with low vision may need to resize text so they can read it. There are two ways to do that in the browser (not counting tools like screen magnifiers,…
Continue reading
Detecting browser font size to fix accessibility and layout issues with large fonts
August 16, 2021
Recently CSS Tricks posted "A Deep Dive on Skipping to Content" by Paul Ratcliffe. It's great to see so much content lately focused on accessibility, and this article should prove useful for many years to come.
However, I've got a few thoughts on the implementation which I think can improve it a bit, related to the skip link target element. I posted some of these as a comment on the article, but…
Continue reading
Some thoughts on CSS Tricks' "Deep Dive on Skipping to Content"
August 13, 2021
I came across a weird issue while doing an accessibility audit recently. NVDA announces the site logo as "clickable", and the cursor changes to a pointer (the little "hand") when hovering over it with the mouse. I assumed it was a link to the homepage, as is typical for header logos, but clicking it did nothing – on the homepage, at least.
On interior pages, clicking the logo takes you to…
Continue reading
The importance of using correct semantic HTML
February 2, 2021
I really appreciate when a website or app offers the choice of dark mode. It makes reading at night much easier on the eyes, and some people prefer it at all times due to vision issues.
I'd never implemented a dark mode switch, so one of my goals for my blog redesign was to do so, both for reader convenience and to gain the experience. Here's how I did it.
It might seem surprising that I discuss…
Continue reading
How I created a dark mode switch for my Drupal 9 site
September 10, 2020
This is slightly adapted from presentation notes, so it's a bit sketchy. It's more of an outline of requirements, rather than code samples. I may add those later. Also, note that I've only covered two scenarios: a dropdown menu, and a menu that covers the entire screen when opened (modal dialog). There may be different considerations for other styles.
Mobile menu: usually the site's main menu,…
Continue reading
How to create an accessible mobile menu