Images
ImagesLow

Image Lazy Loading

Checks images below the fold use loading="lazy" — but LCP image does NOT.

What this check measures

We identify below-the-fold images and check loading="lazy". Also flag if the LCP image itself has lazy (makes LCP worse).

Why it matters

Lazy-loading cuts initial page data 50-80% on image-heavy pages. Wrong lazy (on LCP) destroys LCP. The fix is 5 characters per image but huge perf gain.

search

How our audit detects it

Identify images by DOM position. Check for loading attribute. Flag mismatches.

Typical findings

  • error_outlineHero image has loading="lazy".
  • error_outlineGrid of 40 thumbnails below the fold, all eager.

How to fix

Lazy everything below the fold, eager (or nothing) on LCP. Add fetchpriority="high" on LCP for an extra boost.

Frequently asked questions

How do I identify LCP?expand_more
DevTools → Performance → record → LCP marker shows the element. Usually the hero image or headline.

Want this checked on your site?

Pantra runs the full audit (SEO, Security, GEO, Performance, Schema, Technical, Images) in 10 seconds and generates stack-specific fix prompts.

Scan my site

Related checks