Start scanning free

( Understandable / WCAG 3.2.6 )

Help mechanism location is inconsistent across pages

This check maps to Consistent Help. Use the guidance below to confirm the issue, understand who it affects and ship a fix.

Moderate Level A WCAG 3.2.6 — Consistent Help

What’s wrong

A help link or support control appears in different locations across pages.

Why it matters

People with cognitive disabilities depend on predictable layouts to complete tasks. Moving help controls increases effort and slows recovery when they are stuck.

How to fix it

Use semantic HTML and valid ARIA so assistive technology gets the same state and structure as sighted users. Keep labels and states explicit in markup.

Before
<!-- Page A -->
<header><a href="/help">Help</a></header>

<!-- Page B -->
<footer><a href="/help">Help</a></footer>
After
<!-- Page A -->
<header><a href="/help">Help</a></header>

<!-- Page B -->
<header><a href="/help">Help</a></header>

If this pattern is generated by a component, fix it once in the shared component so every instance inherits the accessible behavior.

Learn more