Skip to content
atlookup

generic Alt Text

Alt text like "image", "photo", "picture" adds no information — screen readers announce "image image" and Google gets no semantic signal.

notice Impact: low WCAG 1.1.1 (Level A) IMG_ALT_GENERIC 2 min read Updated

Why it matters

Alt text like "image", "photo", "picture" adds no information — screen readers announce "image image" and Google gets no semantic signal.

Address when convenient — notices usually mark a polish opportunity rather than a defect. Estimated SEO impact: low — small marginal improvement, but cheap to fix.

How to fix

  • Describe what the image actually shows ("Sunset over the Golden Gate Bridge")
  • Focus on purpose and content, not medium

Common causes

If the rule is firing across many pages, the root cause is almost always one of these:

  • CMS or page builder doesn't enforce alt text at upload time, so editors leave it blank.
  • Bulk-imported product images inherit a generic placeholder (or the filename) as alt.
  • Theme/template renders <img> tags directly from the database without normalising attributes.
  • Lazy-loading or asset pipelines strip optimisation hints during build.

Anti-patterns to avoid

Even with the best intentions, these "fixes" make the issue worse — recognise them so you don't ship them:

  • Putting the filename into alt ("IMG_1234.jpg" tells nobody anything).
  • Stuffing the alt with keywords that don't describe the image.
  • Using the same alt across every product image on a category page.

Example

Here's a typical instance — the problematic line is highlighted in red:

example.html HTML
<img src="/img/example.jpg" alt="image" />

And the fix — the corrected line, highlighted in green:

example.html HTML · fixed
<img src="/img/example.jpg" alt="Acme Co quarterly revenue chart" />

How atlookup detects this

Our crawler renders each page with a real headless browser, then inspects every <img> and <input type="image"> for the relevant attribute and length thresholds. Pages where the rule fires for generic alt text are flagged on the report.

If you'd like to see this rule fire on your own site, run a free 60-second audit — every page is reported with the exact lines that triggered it.

Tools to verify the fix

Once you've applied the fix, double-check with these external validators:

  • Lighthouse — Audit images for missing alt, lazy-load, and modern formats.
  • axe DevTools — WCAG-aligned image accessibility check.
  • WAVE — Visual overlay of every alt-related issue per page.

Frequently asked questions

Why does Generic Alt Text matter for SEO?

Alt text like "image", "photo", "picture" adds no information — screen readers announce "image image" and Google gets no semantic signal.

How do I fix generic alt text?

Describe what the image actually shows ("Sunset over the Golden Gate Bridge") Focus on purpose and content, not medium

Is this a critical SEO issue?

Address when convenient — notices usually mark a polish opportunity rather than a defect. Estimated SEO impact: low — small marginal improvement, but cheap to fix.

How does atlookup detect generic alt text?

Our crawler renders each page with a real headless browser, then inspects every <code>&lt;img&gt;</code> and <code>&lt;input type="image"&gt;</code> for the relevant attribute and length thresholds. Pages where the rule fires for generic alt text are flagged on the report.

Does this affect accessibility?

Yes. This issue maps to WCAG 1.1.1 (Level A). Fixing it improves both SEO ranking signals and the experience for users on assistive technology.