WordPress design
Custom WordPress builds on a 5-year hosting agreement
Trades & home services — emergency call-out, service grid, local trust signals
View WordPress designNano & Micro entry
Apps+OS from £5.33/mo — WordPress eligible
Small — 3 months free
Most popular starter — trial on new accounts
Scale plans
X-Large through 16X-Large for growth clients
Professional mailboxes
Webmail on your domain — monthly and annual plans
Uptime monitoring
External checks and alerts before customers notice
WordPress design
Custom WordPress builds on a 5-year hosting agreement
Trades & home services — emergency call-out, service grid, local trust signals
View WordPress designCustom development
Bespoke sites, apps, and integrations
Ecommerce retail — product discovery, merchandising, and checkout-ready layout
View Custom development
You compress the images, lazy load everything you can, strip out a few plugins, and the performance score barely moves. It is one of the most frustrating moments in web work, because all that effort should have paid off and it did not.
Often the reason is hiding upstream. Before the browser can paint anything, it has to wait for your server to reply, and if that reply is slow, no amount of front end polish will rescue the experience.
Core Web Vitals are Google's attempt to measure how a page feels to a real person, focusing on loading, interactivity and visual stability. The headline metrics are explained well in Google's own overview of the Web Vitals programme, and they have a direct line back to how quickly your server responds.
The reason is simple. Every visible thing on a page begins as a request to your server. If that first response drags, the clock on every other metric starts late. You can have the leanest images in the world and still lose, because the page was waiting on the origin before it could even begin.
Time to first byte, usually shortened to TTFB, is the gap between a browser asking for a page and the first byte of the response arriving. It is the truest single measure of how responsive your hosting is under real conditions.
It bundles together several delays: the network trip to your server, the time the server spends building the page, and any database work behind it. Mozilla's reference on time to first byte breaks down exactly what is being counted, which is useful when you are trying to work out where your own milliseconds are going.
A slow TTFB is the performance equivalent of a quiet leak. It rarely shows up as one dramatic failure. It just taxes every page load by the same amount, day after day.
Once you accept that the server matters, the next job is finding which part of it is slow. Two areas account for most of the trouble.
The origin is your actual server doing actual work. On a busy shared box, your site competes with its neighbours for processor time and memory, and your requests queue when they are busy. Underpowered hardware, an old language runtime, or a heavy framework generating each page from scratch all push the origin response time up. Moving to a platform with guaranteed resources, such as our VPS hosting, removes the noisy neighbour problem and gives your code room to run.
Most pages do not need to be built fresh for every visitor. Caching stores a ready made copy so the server can hand it over instantly instead of assembling it again. Done well, it can turn a slow dynamic page into one that responds almost instantly. Mozilla's guide to HTTP caching is the canonical reference for how browsers and servers agree on what to store and for how long.
Of the Core Web Vitals, Largest Contentful Paint is the one most tightly bound to server speed. It measures when the biggest element on screen, usually a hero image or headline block, finishes loading. If your first byte arrives late, LCP cannot help but arrive late too.
Google's guidance on improving LCP is blunt about this. It treats server response time as one of the first things to fix, because it sits at the front of the chain and everything else inherits its delay. Shave time off the first byte and you tend to lift the loading metric across the whole site at once, which is a rare thing in performance work.
Lab tools are useful but they test one device on one connection. Real visitors arrive on tired phones, patchy mobile networks and old laptops, and their experience is the one Google actually scores.
Start with a quick reading from PageSpeed Insights, which combines a lab test with field data drawn from real Chrome users where it is available. That field data is the closest you will get to seeing your site through your customers' eyes, and it is what shows whether a change you made in development helped anyone in the wild.
Once you can see the numbers, treat the server as the foundation rather than an afterthought. If the first byte is slow, fix that before you spend another evening squeezing images. We dig into the full picture, from origin to front end, on our performance page, but the order of operations is the lesson worth taking away. Sort the server, then the rest, and the green score tends to follow.

Performance
Your UK visitors are waiting too long before anything appears. Most of that delay is fixable, and a good chunk of it is about where your server sits.

Performance
A gorgeous site that takes six seconds to load is not a gorgeous site. Here is how to keep the beauty without paying for it in speed.

Performance
Content delivery networks are pitched as essential, but if all your customers are in Britain the answer is less obvious. Here is how to decide.

Comments