Annex

Fixing Focus Visible on Wix (WCAG 2.4.7)

When a control receives keyboard focus, there must be a visible indicator showing where that focus is.

Why it matters

This is the failure that turns a technically operable store into an unusable one. Keyboard support can be perfect, but if the focus ring has been removed the customer is tabbing blind — they cannot tell whether they are on the size selector or the Add to Cart button. The usual cause is a single line of CSS added early in a theme to remove an outline the designer disliked, and it silently affects every control on every page.

Wix — where to look

Wix applies its own focus indicator by default; problems usually come from custom CSS added through an embed.

What to do

Check whether custom code is removing the default outline, and restore an indicator if so.

Verification status

Not yet confirmed against a live installation. The paths and setting names below describe the general structure of Wix and menu names vary by version, theme and plugins. Where we have checked a step against the platform's own source, this box says so and links to it.

How to verify the fix

  1. Press Tab repeatedly from the top of a product page and confirm you can always see where you are.
  2. Search the stylesheet for outline:none and outline:0 and check each occurrence provides an alternative indicator.
  3. Check buttons, form fields, swatches and the cart drawer specifically, not just links.
  4. Confirm the indicator is still visible when the focused control sits under a sticky header.

Other platforms

The full criterion

Read the full explanation of WCAG 2.4.7 Focus Visible, or the formal W3C definition.