How to fix landmark no duplicate contentinfo on Wix
Remove duplicate `<footer>` elements or `role="contentinfo"` landmarks so your page has exactly one, site-wide footer region.
Steps for Wix
- In the Wix Editor, your page footer is a built-in section at the bottom of every page — Wix renders this as the site footer automatically and it should not be duplicated.
- Check whether you have added a 'Footer' section strip manually inside the page body (separate from the actual site footer at the very bottom). If so, that strip likely renders its own landmark. Remove it or convert its content into a regular section/container strip.
- If you use Wix Velo (custom code), open the Page Code or Site Code panel and search for any custom HTML components or `$w` elements that output a `<footer>` tag. Change those to `<div>` elements.
- For custom HTML widgets (Insert → Embed → Custom Code or HTML iFrame), inspect the widget's code for `<footer>` tags and replace with `<div>`.
- Preview the page and use the axe browser extension to verify only one contentinfo landmark is detected.
<footer>
<!-- Only ONE <footer> element should be a direct child of <body> -->
<p>© 2025 My Store. All rights reserved.</p>
<nav aria-label="Footer navigation">
<a href="/privacy">Privacy Policy</a>
<a href="/contact">Contact Us</a>
</nav>
</footer>
<!-- ✅ CORRECT: one <footer> at page level -->
<!-- ❌ WRONG: a second top-level <footer> or role="contentinfo" anywhere else on the page -->
<!-- <footer>... duplicate content ...</footer> -->
<!-- <div role="contentinfo">... duplicate ...</div> -->
<!-- ✅ OK: <footer> nested inside <article> or <section> is allowed and does NOT create a contentinfo landmark -->
<article>
<footer>Article-level footer (author, date) — this is fine</footer>
</article>What is landmark no duplicate contentinfo?
A "contentinfo" landmark is the accessible name for the footer section of a webpage — typically the `<footer>` HTML element, or any element marked with `role="contentinfo"`. It signals to screen readers and assistive technologies that this region contains site-level information like copyright notices, legal links, and contact details. WCAG and ARIA rules require that this landmark appear only once per page. When a page contains more than one `<footer>` element (or more than one element with `role="contentinfo"`) that is a direct child of the `<body>`, assistive technologies become confused about which one is the "real" footer, and navigation shortcuts that jump to the footer region break or behave unpredictably.
Screen reader users rely on landmark navigation to skip directly to major page regions — heading, main content, navigation, and footer — without reading every word. When two contentinfo landmarks exist, screen readers may announce "footer" twice, jump to the wrong one, or leave users disoriented. This is a WCAG 2.1 failure (best practice under ARIA Landmark Regions guidance) that exposes your store to accessibility-related legal risk in jurisdictions where web accessibility is required (e.g. ADA in the US, EAA in the EU). Fixing it also improves the overall structural quality of your HTML, which indirectly supports search engine crawling and indexing by making your page outline cleaner and more predictable.
See the complete Landmark no duplicate contentinfo guide for every platform and the full background.
Not sure if your Wix store has this?
Run a free SEOLZ audit — we’ll find landmark no duplicate contentinfo and every other issue across your whole site.
Scan my site free