High impactPerformance

Slow Largest Contentful Paint (LCP)

LCP over 2.5 seconds fails Core Web Vitals. Here's a step-by-step fix that actually moves the metric.

What it means

The largest visible element on the page (usually a hero image or headline) takes more than 2.5 seconds to render on real-world mobile.

Why it matters

LCP is a Core Web Vitals metric and a Google ranking signal. It's also the most noticeable performance issue to real users.

How to fix it

  1. Identify the LCP element in PageSpeed Insights.
  2. Preload it: <link rel="preload" as="image" href="..." fetchpriority="high">.
  3. Serve it as WebP, sized to actual rendered dimensions.
  4. Don't lazy-load the LCP image.
  5. Inline critical CSS for the above-the-fold section.
  6. Move render-blocking scripts to <body> or add defer.

Find this issue on your site automatically

FreeSEO scans for slow largest contentful paint (lcp) and 140+ other issues, free, no signup.

Frequently asked questions

What's the LCP target?

Under 2.5s on mobile. Under 1.8s puts you in "Good" territory comfortably.