Largest Contentful Paint (LCP) is too slow: what it is, why it matters, and how to fix it
The Largest Contentful Paint — the time until the biggest above-the-fold element (usually the hero image or main heading) is rendered — exceeds Google's threshold. Good is 2.5 s or under; over 4 s is poor.
Where this fits: performance in SEO
Why largest contentful paint (lcp) is too slow hurts your rankings
LCP is one of the three Core Web Vitals and a confirmed Google ranking signal. It marks the moment a visitor perceives the page as loaded. A slow LCP makes the page feel broken and sharply increases bounce rate, especially on mobile connections where most traffic now originates.
This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it.
How to fix it
Identify the LCP element in the PageSpeed report and make it load first: serve it in a modern format (WebP/AVIF) sized to the viewport, add a preload hint, and never lazy-load it. Remove render-blocking CSS and JavaScript ahead of it, inline critical CSS, and reduce server response time (TTFB) with caching or a CDN.
<!-- Preload the hero image so it starts downloading immediately -->
<link rel="preload" as="image" href="/hero.avif" fetchpriority="high" />Frequently asked questions
What does "Largest Contentful Paint (LCP) is too slow" mean?
The Largest Contentful Paint — the time until the biggest above-the-fold element (usually the hero image or main heading) is rendered — exceeds Google's threshold. Good is 2.5 s or under; over 4 s is poor.
Why does largest contentful paint (lcp) is too slow matter for SEO?
LCP is one of the three Core Web Vitals and a confirmed Google ranking signal. It marks the moment a visitor perceives the page as loaded. A slow LCP makes the page feel broken and sharply increases bounce rate, especially on mobile connections where most traffic now originates.
How do I fix largest contentful paint (lcp) is too slow?
Identify the LCP element in the PageSpeed report and make it load first: serve it in a modern format (WebP/AVIF) sized to the viewport, add a preload hint, and never lazy-load it. Remove render-blocking CSS and JavaScript ahead of it, inline critical CSS, and reduce server response time (TTFB) with caching or a CDN.
How serious is this issue?
This is a high-severity issue: it directly suppresses rankings or click-through on the pages it affects. It belongs in your current sprint, prioritised by how many pages carry it. It belongs to the performance family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects largest contentful paint (lcp) is too slow on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by largest contentful paint (lcp) is too slow, and hands you a ready-made fix task.
Check my site free