We have inherited a website which we are currently trying to make WCAG2.0 AA compliant
One of the pages is failing the heading-order rule as it has an <h3>
and <h4>
tags but no prior <h1>
or <h2>
We are in the process of adding an <h1>
tag (as all pages should have one) but there is no need for an <h2>
tag and to amend the <h3>
and <h4>
would involve a large refactoring of various jQuery code and CSS
Are there any tricks to make the page accessible? I'm loathed to put a hidden <h2>
tag in as the screen readers would presumably pick this up. Or do they ignore the hidden tags and the page then becomes compliant?
` and `
– Zeta Sep 29 '16 at 13:24` and `
`, you're not using the latter two semantically correct".