Skip to content

Insights · Engineering · Nov 1, 2024 · 7 min read

Core Web Vitals in plain language: LCP, INP and CLS for business owners

LCP, INP and CLS describe things every visitor feels: how fast your page appears, how quickly it responds and whether it jumps around. Here is what each means, why Google cares and what fixing a poor score involves.

oldevs.com1.8s · 100
Request a quote

Core Web Vitals are three measurements Google takes from real visits to your website: how quickly the main content appears (Largest Contentful Paint, or LCP), how fast the page responds when someone clicks or taps (Interaction to Next Paint, or INP), and how much the layout shifts around while loading (Cumulative Layout Shift, or CLS). They matter because Google uses them as a ranking signal, and because they describe the experience your customers actually have on your site. Most poor scores trace back to a short list of fixable causes, and a good developer can usually diagnose them in an afternoon.

Key takeaways

  • LCP measures how long the main content takes to appear, INP measures how quickly the page reacts to a click or tap, and CLS measures how much the layout jumps around.
  • Google grades your site on data from real visitors collected over a rolling 28-day window, not on a one-off test from your office Wi-Fi.
  • The usual culprits are oversized images, heavy third-party scripts, slow server responses and layouts that load without reserved space.
  • Fixing vitals is ordinary, well-understood web development work on images, scripts, templates and hosting, not a dark art.
  • Improvements take roughly a month to show fully in Google's reports, so treat vitals as ongoing hygiene rather than a one-time project.

What do LCP, INP and CLS actually measure?

Each metric captures one moment in a visit where a slow or clumsy site loses people. Together they answer three questions every visitor silently asks: can I see it, can I use it, and can I trust it to hold still?

LCP: how long until the page looks loaded

Largest Contentful Paint is the time from clicking a link to the moment the biggest visible element, usually a hero image or a headline, finishes rendering. It is a proxy for the feeling of "the page is here." A visitor staring at a blank screen does not care that your analytics script loaded quickly; they care that the thing they came to see has not appeared yet.

INP: how quickly the page responds when someone acts

Interaction to Next Paint measures the delay between an action, such as tapping a menu, clicking "add to cart" or typing in a field, and the screen visibly responding. It replaced the older First Input Delay metric in 2024 and is stricter, because it looks at interactions across the whole visit rather than just the first one. A page with poor INP feels broken even when it eventually does the right thing: buttons seem dead, menus lag, and people tap twice and end up somewhere they did not intend.

CLS: how much the page jumps around

Cumulative Layout Shift scores visual stability. Every time content moves after it first appears, the shift is added to the score: an ad loads and shoves the article down, a font swaps and reflows the text, an image pops in above the button you were about to press. High CLS is the metric behind the familiar frustration of tapping "accept" and hitting an ad instead.

Why does Google care about three numbers?

Google's business depends on people trusting search results to lead somewhere useful. Sending a searcher to a page that takes ages to appear, ignores their taps and rearranges itself under their thumb damages that trust, so Google folded these measurements into its page experience signals. Vitals are not the main ranking event: relevant, well-written content still comes first. But between two otherwise comparable pages, the one that loads fast and holds still has the edge.

The more practical reason to care is that the metrics describe your customers' patience. The same slow load that hurts your ranking is quietly costing you enquiries and abandoned carts every day, whether or not Google is watching. That is why we treat vitals work as conversion work as much as engineering work, and why it sits naturally alongside analytics and conversion rate optimisation.

A fast, stable site is not a technical vanity project. It is the difference between a visitor who stays and one who quietly gives up.

Where do the scores actually come from?

This is the part that confuses most business owners. There are two kinds of data, and they often disagree.

Field data is collected from real Chrome users visiting your site, aggregated over a rolling 28-day window in the Chrome User Experience Report. This is what Google judges you on, and it is what appears in Search Console's Core Web Vitals report. Google's published targets, current at the time of writing, are an LCP of 2.5 seconds or less, an INP of 200 milliseconds or less and a CLS of 0.1 or less, each measured at the 75th percentile of visits, meaning roughly three quarters of your visitors need to have a good experience, not just the average one.

Lab data comes from tools like Lighthouse and PageSpeed Insights running a simulated visit on a throttled connection. It is useful for diagnosis, because it produces a repeatable test you can run before and after a fix. But it is not what you are ranked on, and a lab score of 60 with healthy field data is a far better position than the reverse.

If you check nothing else, open Search Console and look at the Core Web Vitals report. It tells you, in Google's own accounting, which pages pass and which fail on real visits.

What usually causes bad scores?

In our experience the causes are unglamorous and repeat from site to site. Oversized images shipped at full camera resolution. Dozens of marketing and tracking scripts added over the years and never removed. Cheap shared hosting that takes a second to even begin responding. Themes and page builders that load everything on every page. Ads, banners and embeds that arrive late and push content around. Very little of it is exotic.

MetricWhat the visitor feelsTypical causesWhere the fix usually lives
LCPStaring at a blank or half-empty pageHuge images, slow server response, render-blocking scripts and stylesheetsImage pipeline, hosting and caching, template cleanup
INPButtons and menus that feel dead or laggyHeavy JavaScript, too many third-party tags, long tasks blocking the browserScript audit and removal, code splitting, deferring non-essential work
CLSContent jumping as it loads, mis-tapsImages and ads without reserved space, late-loading banners, font swapsLayout rules in the theme or template, font loading strategy

One pattern deserves special mention: third-party scripts. Every chat widget, heat-mapping tool, ad pixel and pop-up plugin is code your visitors download and run. Individually each seems harmless; collectively they are the most common reason we see for poor INP. The fastest performance win on many sites is simply an honest inventory of which of these tools still earns its keep.

What does fixing them involve?

Vitals work follows a predictable arc. First, diagnosis: separating field data from lab data, identifying which template types fail (product pages behave differently from blog posts), and tracing each failing metric to specific causes. Second, the fixes themselves, roughly in order of typical effort:

  1. Images. Serve modern formats, size them to the space they occupy, compress them properly and lazy-load anything below the fold. Often the single biggest LCP win.
  2. Hosting and caching. Move to hosting that responds quickly, add a content delivery network and cache pages so repeat work is not redone for every visitor.
  3. Script hygiene. Remove tags nobody uses, load the rest after the page is interactive, and consolidate overlapping tools.
  4. Layout stability. Reserve space for images, embeds and ads before they load, and tune how fonts swap in so text does not reflow.
  5. Deeper rebuilds. When a theme or page builder is the bottleneck, the honest answer is sometimes rebuilding key templates: heavier work, but it fixes the cause rather than the symptoms.

None of this requires exotic skills, but it does require care: performance fixes touch live templates, and a clumsy change can break layouts or tracking. It is bread-and-butter work for a disciplined web development team, and it should always end with measurement, not just a deployment.

What results can you realistically expect?

Be wary of anyone promising a specific ranking jump from vitals work. Realistic expectations look like this: pages move from "failing" to "passing" in Search Console; bounce rates on slow templates improve; mobile visitors on mid-range phones and patchy connections, often the majority, get a noticeably better experience; and your content competes on its merits instead of being handicapped by its container. Because field data accumulates over a 28-day window, the official numbers catch up roughly a month after fixes ship.

Expect maintenance, too. Every new plugin, tracking tag and campaign landing page can reintroduce weight, so the sites that stay fast are the ones where performance is checked as part of routine publishing, not rediscovered in a panic every couple of years.

How OlDevs can help

OlDevs has been building and repairing websites from Vancouver since 2014, and Core Web Vitals work sits squarely in what we do every week: diagnosing failing pages, fixing images, scripts, templates and hosting, and verifying the results in real field data rather than a screenshot of a lab score. One accountable team handles the engineering and the measurement, you see a working demo every week, and you own all the code and accounts when we are done. If your Search Console report is showing red, or your site simply feels slow and you want a plain-spoken assessment of why, request a quote and we will reply within one business day.

FAQ

Questions on this topic.

Yes, they are part of Google's page experience signals, but they act more like a tiebreaker than the main event. Strong, relevant content still comes first. Where you and a competitor are otherwise well matched, better vitals can favour your page, and a slow, unstable page can hold otherwise good content back.

Google's published targets, current at the time of writing, are an LCP of 2.5 seconds or less, an INP of 200 milliseconds or less and a CLS of 0.1 or less, each measured at the 75th percentile of real visits. In plain terms, roughly three quarters of your visitors should see, use and read the page without waiting or watching it shift.

It depends on the cause. Image and caching fixes can ship within days, while script cleanups and template changes usually take a few weeks of focused work. Because Google reports field data over a rolling 28-day window, expect about a month after the fixes ship before the official numbers fully reflect them.

Still have a question? Ask us when you request a quote

Let’s connect

Want this applied to your business?

Tell us what you’re building. We’ll reply within one business day with next steps and a tailored quote.

We’ll only use your details to prepare your quote. No lists, no spam.

Call us Request a quote
We use cookies for personalized content and ads, social features, and analytics. We share site usage data with our partners.
Cookies settings
Accept
Decline
Privacy & Cookie policy
Privacy & Cookies policy
Cookie name Active

Privacy Policy

What information do we collect?

We collect information from you when you register on our site or place an order. When ordering or registering on our site, as appropriate, you may be asked to enter your: name, e-mail address or mailing address.

What do we use your information for?

Any of the information we collect from you may be used in one of the following ways: To personalize your experience (your information helps us to better respond to your individual needs) To improve our website (we continually strive to improve our website offerings based on the information and feedback we receive from you) To improve customer service (your information helps us to more effectively respond to your customer service requests and support needs) To process transactions Your information, whether public or private, will not be sold, exchanged, transferred, or given to any other company for any reason whatsoever, without your consent, other than for the express purpose of delivering the purchased product or service requested. To administer a contest, promotion, survey or other site feature To send periodic emails The email address you provide for order processing, will only be used to send you information and updates pertaining to your order.

How do we protect your information?

We implement a variety of security measures to maintain the safety of your personal information when you place an order or enter, submit, or access your personal information. We offer the use of a secure server. All supplied sensitive/credit information is transmitted via Secure Socket Layer (SSL) technology and then encrypted into our Payment gateway providers database only to be accessible by those authorized with special access rights to such systems, and are required to?keep the information confidential. After a transaction, your private information (credit cards, social security numbers, financials, etc.) will not be kept on file for more than 60 days.

Do we use cookies?

Yes (Cookies are small files that a site or its service provider transfers to your computers hard drive through your Web browser (if you allow) that enables the sites or service providers systems to recognize your browser and capture and remember certain information We use cookies to help us remember and process the items in your shopping cart, understand and save your preferences for future visits, keep track of advertisements and compile aggregate data about site traffic and site interaction so that we can offer better site experiences and tools in the future. We may contract with third-party service providers to assist us in better understanding our site visitors. These service providers are not permitted to use the information collected on our behalf except to help us conduct and improve our business. If you prefer, you can choose to have your computer warn you each time a cookie is being sent, or you can choose to turn off all cookies via your browser settings. Like most websites, if you turn your cookies off, some of our services may not function properly. However, you can still place orders by contacting customer service. Google Analytics We use Google Analytics on our sites for anonymous reporting of site usage and for advertising on the site. If you would like to opt-out of Google Analytics monitoring your behaviour on our sites please use this link (https://tools.google.com/dlpage/gaoptout/)

Do we disclose any information to outside parties?

We do not sell, trade, or otherwise transfer to outside parties your personally identifiable information. This does not include trusted third parties who assist us in operating our website, conducting our business, or servicing you, so long as those parties agree to keep this information confidential. We may also release your information when we believe release is appropriate to comply with the law, enforce our site policies, or protect ours or others rights, property, or safety. However, non-personally identifiable visitor information may be provided to other parties for marketing, advertising, or other uses.

Registration

The minimum information we need to register you is your name, email address and a password. We will ask you more questions for different services, including sales promotions. Unless we say otherwise, you have to answer all the registration questions. We may also ask some other, voluntary questions during registration for certain services (for example, professional networks) so we can gain a clearer understanding of who you are. This also allows us to personalise services for you. To assist us in our marketing, in addition to the data that you provide to us if you register, we may also obtain data from trusted third parties to help us understand what you might be interested in. This ‘profiling’ information is produced from a variety of sources, including publicly available data (such as the electoral roll) or from sources such as surveys and polls where you have given your permission for your data to be shared. You can choose not to have such data shared with the Guardian from these sources by logging into your account and changing the settings in the privacy section. After you have registered, and with your permission, we may send you emails we think may interest you. Newsletters may be personalised based on what you have been reading on theguardian.com. At any time you can decide not to receive these emails and will be able to ‘unsubscribe’. Logging in using social networking credentials If you log-in to our sites using a Facebook log-in, you are granting permission to Facebook to share your user details with us. This will include your name, email address, date of birth and location which will then be used to form a Guardian identity. You can also use your picture from Facebook as part of your profile. This will also allow us and Facebook to share your, networks, user ID and any other information you choose to share according to your Facebook account settings. If you remove the Guardian app from your Facebook settings, we will no longer have access to this information. If you log-in to our sites using a Google log-in, you grant permission to Google to share your user details with us. This will include your name, email address, date of birth, sex and location which we will then use to form a Guardian identity. You may use your picture from Google as part of your profile. This also allows us to share your networks, user ID and any other information you choose to share according to your Google account settings. If you remove the Guardian from your Google settings, we will no longer have access to this information. If you log-in to our sites using a twitter log-in, we receive your avatar (the small picture that appears next to your tweets) and twitter username.

Children’s Online Privacy Protection Act Compliance

We are in compliance with the requirements of COPPA (Childrens Online Privacy Protection Act), we do not collect any information from anyone under 13 years of age. Our website, products and services are all directed to people who are at least 13 years old or older.

Updating your personal information

We offer a ‘My details’ page (also known as Dashboard), where you can update your personal information at any time, and change your marketing preferences. You can get to this page from most pages on the site – simply click on the ‘My details’ link at the top of the screen when you are signed in.

Online Privacy Policy Only

This online privacy policy applies only to information collected through our website and not to information collected offline.

Your Consent

By using our site, you consent to our privacy policy.

Changes to our Privacy Policy

If we decide to change our privacy policy, we will post those changes on this page.
Save settings
Cookies settings