Skip to content

Insights · Engineering · Apr 23, 2026 · 8 min read

The site speed fixes that actually move Core Web Vitals in 2026

Most speed work stalls because it starts with a tool score instead of a bottleneck. Here is the short list of fixes that reliably move LCP, INP and CLS, the order to do them in, and how to prove they worked.

oldevs.com1.8s · 100
Request a quote

Most site speed work stalls because it starts with a tool score instead of a bottleneck. The fixes that reliably move Core Web Vitals are a short list: get the largest image right, stop fonts and scripts from blocking the first paint, put a hard budget on third-party tags, and cut server response time with caching. Do those in order, measure in the field, and everything after that is tuning.

Key takeaways

  • Field data at the 75th percentile is the only score that counts. Lab tools tell you where to look, not whether you fixed it.
  • The LCP element is almost always one image or one heading. Find it per template, then make it the first thing the browser fetches.
  • Third-party tags are the usual cause of poor INP. Delay anything that is not consent or core analytics until the page is interactive.
  • Edge caching and a short time to first byte set the ceiling for every other fix on the page.
  • Lazy loading helps below the fold and hurts above it. Never lazy load the LCP image.

Measure in the field before you change a line

Core Web Vitals are scored on real visits, not on your laptop. The three that matter are Largest Contentful Paint, which is how quickly the main content appears; Interaction to Next Paint, which is how quickly the page responds to a tap or click; and Cumulative Layout Shift, which is how much the page jumps while it loads. Google's published thresholds, current at the time of writing, are 2.5 seconds for LCP, 200 milliseconds for INP and 0.1 for CLS, assessed at the 75th percentile of visits.

Get two views before you touch anything. The field view comes from the Chrome User Experience Report, surfaced in PageSpeed Insights and in Search Console, and it is what search engines actually see. The lab view comes from Lighthouse or WebPageTest and is useful for one thing: telling you which element or script is responsible. If you want per-page numbers rather than origin-level averages, add the web-vitals script to your pages and send the readings into your analytics tool as events.

Scope the work by template, not by site. Pick your five highest-traffic page types, usually home, category, product or service, article, and the main form page. A homepage fix rarely transfers to a product template, and averaging the two hides both.

A lab score is a hypothesis. Field data at the 75th percentile is the result.

Images: usually the whole LCP story

On most sites the LCP element is a hero image, and the fix is mechanical. PageSpeed Insights names the element for you. Once you know it, work through four things.

Format. Serve AVIF with a WebP fallback through a picture element. AVIF gives the smallest files at a given quality for photographic content, and WebP covers the rest. Keep a JPEG or PNG original only if your pipeline needs one.

Sizing. Ship a srcset with three or four widths and an honest sizes attribute, so phones do not download a desktop-width file. Set explicit width and height attributes, or an aspect ratio in CSS, so the browser reserves the box and CLS stays flat.

Priority. Give the LCP image a high fetch priority and leave it eagerly loaded. If the hero is a CSS background, the preload scanner cannot see it in the markup at all, and the request waits for the stylesheet to download and the rule to match the element, so use a real image element instead, or preload the file in the head.

Lazy loading. Add native lazy loading to every image below the fold and to embedded iframes, and to nothing above it. The common failure is a page builder or carousel that lazy loads all images including the first one, which pushes LCP back by a full round trip. The second failure is a JavaScript lazy loader that waits for hydration before it requests anything. Native lazy loading needs no library and no framework, and it is the version that actually helps.

Fonts and render-blocking resources

Fonts cause two problems: invisible text while the file downloads, and a layout shift when the real face replaces the fallback. Self-host the woff2 files rather than calling a font service, preload only the one or two faces used above the fold, and set font-display to swap. To stop the shift, subset the file to the characters you use and match the fallback's metrics using size-adjust and the ascent and descent overrides on a font-face block for the system fallback. Two well-chosen weights beat six.

Stylesheets block rendering by design. Inline the CSS needed for the header and hero, then load the rest without blocking. Never use an import statement inside a stylesheet, because it hides a second request behind the first. If your site runs on a theme or page builder, check how much CSS ships that no template uses. On marketing sites that is often the largest single saving available.

For JavaScript the rule is short: nothing in the head without defer or async unless the first paint genuinely depends on it. Split bundles by route so a visitor to one page does not parse the code for all of them, and look hard at what your framework sends as a hydration payload. Parsing and executing script is main-thread work, and main-thread work is exactly what INP measures.

Third-party tags and the INP tax

Tag containers accumulate. Chat widgets, heatmaps, session recorders, A/B testing snippets, retargeting pixels, review embeds and consent tools all compete for the single thread the browser needs in order to respond to taps. Open your tag manager and list every tag with the date it was added and the person who asked for it. Anything nobody can name an owner for comes out.

For what survives, set loading rules. Consent and core analytics fire early; everything else waits for idle time or for the first real interaction. Chat widgets in particular can load on a click of a placeholder button rather than on page load, and almost nobody notices the difference. A/B testing snippets deserve extra scrutiny, because the anti-flicker snippet many of them install deliberately blocks rendering until the variant decides. Where a vendor supports server-side tagging, moving collection there cuts what the browser has to download and run.

Your own code contributes too. Long tasks come from oversized event handlers, unbatched DOM writes that force layout recalculation, and heavy work on scroll. Break them up: yield back to the browser between chunks, debounce input handlers, and read layout values before you write them. The Long Animation Frames API, current at the time of writing, will tell you which script owned the frame that made your INP bad.

Server response, caching and the CDN

Time to first byte is part of LCP, and no front-end fix can outrun a slow origin. Budget it separately and treat anything sluggish as a back-end defect rather than a hosting fact of life.

Start with full-page caching at the edge for anonymous traffic. Most marketing and content pages have no reason to be generated per request, and a CDN with a sensible stale-while-revalidate policy serves them from somewhere near the visitor. Hashed static assets get a long max-age and an immutable flag. Where personalisation is the excuse for not caching, move the personalised fragment into a client or edge request that runs after paint, instead of holding the whole document hostage to it.

Then look at the database. The recurring culprits are N+1 query patterns, missing indexes on columns used for filtering and sorting, and unbounded queries that were fine when the table was small. Turn on the slow query log for a week and fix the top five. An object cache in front of repeated reads usually handles the remainder. If your origin is undersized or sitting in the wrong region for your audience, that is a cloud infrastructure decision rather than a code one, and it is worth making before you spend another sprint shaving kilobytes off a bundle.

What to do first, and how to prove it worked

Sequence matters, because some fixes mask the effect of others. Work through it in this order.

  1. Capture baseline field data for your five key templates, and write down the date.
  2. Identify the LCP element on each of those templates in the lab.
  3. Fix images: format, sizing, priority, and lazy loading below the fold only.
  4. Fix fonts: self-host, preload, subset, match the fallback metrics.
  5. Defer or delay scripts, starting with third-party tags.
  6. Add edge caching, then cut time to first byte at the origin.
  7. Re-measure field data after 28 days of collection, not the next morning.

The table below is a working guide to what each fix buys you and what it can break.

FixMetric it movesEffortRegression risk
Format, sizing and priority on the LCP imageLCPLowLow
Self-hosted, preloaded, metric-matched fontsLCP and CLSLowLow
Inline critical CSS, defer the restLCPMediumMedium: unstyled flashes
Audit and delay third-party tagsINP and LCPLowMedium: measurement gaps
Edge caching and shorter time to first byteLCPMediumMedium: stale or personalised content
Breaking up long tasks in your own codeINPHighMedium
Query and index cleanup on slow endpointsLCP, through TTFBMediumLow

Report the outcome the way the business reads it. Field vitals belong beside bounce rate, form starts and revenue per session in the same dashboard, which is where analytics and CRO work joins engineering work instead of running beside it.

How OlDevs helps

We are a full-stack technology studio in Vancouver, building for clients since 2014. On performance engagements we start with your field data and your templates rather than a generic checklist, and we hand back a prioritised list with the measurement plan attached to it. The same accountable team that finds the problem writes the fix, you see a working demo every week, and you own all the code, designs, accounts and IP at the end, including anything we configure in your analytics or your CDN. Accessibility to WCAG 2.2 AA is part of the build rather than a later pass, and we work in English and French.

If slow pages are a symptom of an ageing stack rather than a tuning problem, our web development team will tell you which it is before you commit to a rebuild. Send us your site and the pages that matter most and we will reply within one business day. Request a quote, and we will start with the numbers you already have.

FAQ

Questions on this topic.

Start with the LCP element on your highest-traffic template. On most sites that is a hero image, and correcting its format, its srcset, its dimensions and its fetch priority takes an afternoon. Only once that is done will deferring scripts or trimming CSS show a measurable difference in field data.

Field data is collected over a rolling 28-day window, so a fix deployed today will not show fully in PageSpeed Insights or Search Console for roughly a month. Use lab tools and your own real-user monitoring to confirm the change landed, then treat the field report as the score of record.

No. Lazy loading below the fold saves bandwidth and main-thread work, but applying it to the LCP image delays the very thing being measured, usually by a full network round trip. Check that your theme, carousel or page builder is not lazy loading the hero, and prefer native lazy loading over a JavaScript library.

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