Abstract speedometer with green needle representing Core Web Vitals and page speed performance

Published 22 May 2026 · Last updated 22 May 2026 · 11 min read

TL;DR

Page speed moves money. The ranking lift from Core Web Vitals is small (table stakes, not a tiebreaker boost). The conversion lift is real and measurable. The three metrics that matter in 2026 are LCP, INP and CLS. Most Australian sites we audit fail at least one. Most of the fixes are cheap.

Why this is worth your time

Site speed used to be a developer's problem. In 2026 it's a revenue problem. Every 100 milliseconds you take off a slow page is correlated with 1 to 8 per cent more conversions, depending on the type of site. The numbers come from Akamai, Deloitte and Google's own retail studies. Treat the exact figures as estimates, but the direction is consistent across every credible study of the last decade.

The ranking story is more nuanced. Google has been clear that Core Web Vitals are a ranking signal but a small one. The honest framing is: CWV is table stakes for ranking, not a tiebreaker boost. A great CWV score won't lift you from page two to page one. A terrible score will hurt you when everything else is equal. The bigger win lives in conversion, not rankings.

The three metrics that matter in 2026

Failure modes of the three Core Web Vitals (LCP, INP, CLS) and how each metric affects page speed and conversion

LCP (Largest Contentful Paint)

LCP measures how long it takes for the biggest visible element on the page to render. Usually it's the hero image, the first big heading, or a video poster frame. The threshold for "good" is 2.5 seconds or less on mobile. The threshold for "poor" is anything over 4 seconds.

Where Australian sites usually fail LCP:

  • Hero images served at desktop dimensions to mobile devices
  • Hero images in JPEG when AVIF or WebP would be half the size
  • Render-blocking JavaScript loaded before the hero element
  • Slow server response time (TTFB) compounding everything downstream

INP (Interaction to Next Paint)

INP replaced FID in March 2024. It measures how responsive your page feels when the user interacts with it: clicks, taps, key presses. The threshold for "good" is 200 milliseconds. The threshold for "poor" is anything over 500ms.

For most Australian e-commerce and lead-gen sites, INP failures come from too much JavaScript executing on user input. Third-party scripts (chat widgets, analytics, A/B testing tools) are the usual offenders. The fix is brutal but effective: audit every script, kill the ones nobody uses, defer the ones you keep.

CLS (Cumulative Layout Shift)

CLS measures visual stability. The classic failure: you're about to tap a button, an ad loads, the button moves, and you tap the ad instead. The threshold for "good" is 0.1 or less. Above 0.25 is poor.

The fixes for CLS are usually mechanical: explicit width and height attributes on images, reserved space for ad slots, no JavaScript-injected content above the fold.

How CWV moves revenue (the honest version)

Revenue case studies showing how Core Web Vitals improvements affect conversion rates and page speed outcomes

The classic case study floating around is from a retailer who cut LCP by 1.5 seconds and saw conversion rise 17 per cent. Treat that as upper bound. More typical numbers from our own client work:

  • A Perth e-commerce client cut LCP from 4.1s to 1.9s. Conversion rate lifted 11 per cent over the following quarter.
  • A Joondalup professional services site went from a 6-second mobile load to 1.8 seconds. Contact form submissions roughly doubled per session.
  • A Mandurah trades business with no CWV issues but a slow third-party booking widget cut booking time-to-render by 1.2s; bookings completed lifted around 8 per cent.

The pattern is consistent: improvements in real-user load time show up as improvements in revenue, not always in proportion to the headline figures the case studies promise, but reliably enough that the work is worth doing.

Where to start: measure, then fix

Field data vs lab data

Lab tests (Lighthouse, PageSpeed Insights) tell you what your site does on a simulated mobile connection. Field data (Chrome User Experience Report, real user monitoring) tells you what your actual visitors experience. For real decision-making, use field data. Lab is fine for diagnosing specific page issues.

Tooling that actually helps

  • PageSpeed Insights: free, fast diagnosis, surfaces field and lab data
  • Search Console's Core Web Vitals report: shows aggregated field data across your site
  • WebPageTest: deeper diagnostics, useful when PSI is vague
  • Real User Monitoring (RUM): Cloudflare RUM or a tool like SpeedCurve gives ongoing visibility

The Australian hosting question

Australian hosting and CDN latency diagram showing impact on Core Web Vitals and page speed for AU traffic

If your audience is Australian and your server is in Virginia, you're starting from behind. TTFB (Time to First Byte) is a meaningful contributor to LCP, and TTFB from a Sydney visitor hitting a US-East data centre is rarely under 250ms before anything starts rendering.

The fix is one of three things:

  1. Move your origin to Sydney or Melbourne (AWS Sydney, Azure Australia East, Google Cloud Sydney)
  2. Front your site with a CDN like Cloudflare that has edges in Perth and Sydney. This caches static assets locally and proxies dynamic requests faster.
  3. For WordPress sites: use a host that already runs in Australia (WPEngine Australia, Kinsta with Sydney region, SiteGround Sydney)

This is one of the highest-ROI infrastructure fixes available to most Perth businesses.

A practical CWV audit, step by step

Six-step practical Core Web Vitals audit process for diagnosing and fixing page speed issues

If you're starting from a cold standing position, here's how a Core Web Vitals audit actually runs:

  1. Open Search Console's Core Web Vitals report. It tells you which of your URLs are passing, needs improvement, or failing. Start with the URLs that drive the most traffic.
  2. Run PageSpeed Insights on your top five pages. Focus on the mobile tab. Note the LCP, INP and CLS values for each, and look at the "Diagnostics" and "Opportunities" sections.
  3. Identify the LCP element on each page. PSI tells you which element triggered LCP. If it's a hero image, image optimisation is your priority. If it's a header text block, your issue is upstream (TTFB, render-blocking JS).
  4. Check your third-party scripts. Look at the "Reduce the impact of third-party code" section. Identify which scripts are loading and ask whether each one earns its place.
  5. Run WebPageTest if PSI is vague. The waterfall chart is invaluable for seeing what's loading in what order.
  6. Field-data check. Pull the Chrome User Experience Report data via PSI or Search Console. Lab results are diagnostics; field data is the source of truth for rankings impact.

This is a 90-minute exercise for a small site, longer for an e-commerce store with hundreds of templates. Most Perth SMEs get away with auditing the homepage, two service pages, and the contact page.

Image optimisation in depth

Hero images cause more LCP failures than anything else we see. The fixes, in order of impact:

  • Modernise the format. AVIF or WebP at the same quality is usually 30 to 50 per cent smaller than JPEG. Modern browsers support both. Serve AVIF with WebP and JPEG fallbacks via the picture element.
  • Serve responsive sizes. A 2400px hero image served to a 414px iPhone screen is wasted bytes. Use srcset and sizes to serve appropriate resolutions.
  • Compress aggressively. Quality 75 to 80 in WebP is visually indistinguishable from 95 for most photos. Tools like Squoosh, ImageOptim or build-step plugins do this cleanly.
  • Preload the LCP image. Add a preload link in the head for your hero image. This tells the browser to fetch it earlier in the load sequence.
  • Don't lazy-load above the fold. Common mistake. Lazy-loading is for images below the fold. The LCP image should load eagerly.

What to fix first

If you only have time for three things, do these in order:

  1. Compress and modernise hero images. AVIF or WebP, served responsively. This usually fixes the biggest LCP problems on its own.
  2. Defer or remove non-essential JavaScript. Chat widgets, analytics, A/B tools loaded asynchronously. The order matters.
  3. Set explicit dimensions on every image and embed. Kills most CLS in one pass.

For the structural detail, the Core Web Vitals pillar is the reference, and the specific clusters at CWV explained and mobile usability cover the detail.

What doesn't help

  • Chasing a 100 Lighthouse score. Real users don't care about Lighthouse scores. They care about actual load time.
  • Buying a "speed plugin" for WordPress. Most of them help a little and break something else. Configuration matters more than the plugin choice.
  • A full site rebuild because of CWV. Rebuilds are rarely the answer. Targeted fixes almost always are.

CDN choice for Australian audiences

For most sites we audit in Perth, a CDN is the single highest-ROI infrastructure change. Cloudflare's free tier handles the basic needs for many SMEs: edge caching, image optimisation, and security. The paid tier adds Argo smart routing and image resizing on the fly. For higher-traffic e-commerce sites, BunnyCDN and KeyCDN are worth comparing on price, and AWS CloudFront integrates cleanly with Australian-hosted origins.

The setup hour or two pays back across every metric: TTFB drops, LCP improves, and your origin server load reduces enough that some sites can downgrade their hosting plan after rolling out a CDN. The catch: cache invalidation gets harder, so spend ten minutes learning how to purge specific URLs before you go live.

The conversion side of the equation

Speed alone doesn't fix a site that's hard to convert on. Once you've sorted CWV, the next conversation is conversion rate optimisation: form length, call-to-action placement, trust signals, page hierarchy. Our CRO service covers the playbook, and you can read more about the measurement side at CRO for SEO.

Want us to audit your Core Web Vitals and tell you exactly what to fix and in what order? Get a free SEO audit or look at our speed optimisation service. For a full technical breakdown, website audits is where deeper work starts.

Related reading

FAQ

Core Web Vitals cheat sheet showing fastest fix per metric for page speed optimisation

Do Core Web Vitals actually affect Google rankings?

Yes, but the effect is small. CWV is table stakes for ranking, not a tiebreaker boost. Don't expect a CWV fix to move you from page two to page one. Do expect it to materially affect conversion rate once the traffic is there.

What are the 2026 Core Web Vitals metrics?

The three metrics are LCP (Largest Contentful Paint, measuring how fast the main content renders), INP (Interaction to Next Paint, measuring responsiveness to user input), and CLS (Cumulative Layout Shift, measuring visual stability). INP replaced FID in March 2024.

How much does a 100ms speed improvement increase conversions?

Industry estimates from Akamai, Deloitte and Google studies suggest a 100ms improvement in load time correlates with 1 to 8 per cent uplift in conversion rate depending on the site type. Treat the numbers as directional, not exact, but the direction is consistent.

What's the fastest fix for poor LCP?

Usually one of three things: a too-large hero image (compress it or use modern formats like AVIF), render-blocking JavaScript (defer it), or slow server response time (cache more aggressively or move to a faster host or CDN).

Does the Australian hosting location matter?

For Australian audiences, yes. Serving from Sydney or Melbourne data centres (AWS, Azure, or Google Cloud) gives meaningfully lower latency than US-hosted sites. A CDN like Cloudflare with edges in Perth and Sydney does most of the same job for static assets.

search engine marketing

search engine optimisation

search engine

search marketing

Oliver Wood

Oliver Wood

Oliver is the Founder and Managing Director of The SEO Company, leading the agency since 2007. He’s hands-on across every client account, setting strategy, owning relationships, and making sure the work the team ships moves the metrics that matter. Based in West Leederville, Perth.

Our Stack

Tools that build great SEO.

The industry-standard platforms and APIs powering our work. Same toolkit the world's best agencies use.

Platforms

GoogleGoogle MetaMeta MicrosoftMicrosoft ShopifyShopify WordPressWordPress TikTokTikTok

SEO & Analytics Tools

SEMrushSEMrush AhrefsAhrefs Google AnalyticsGoogle Analytics Google Search ConsoleSearch Console CloudflareCloudflare ClaudeClaude ChatGPTChatGPT

Online Enquiry

Submit