Our WorkAll ServicesAI VisibilitySEO AutomationProduct ManagementClaude AI ServicesZatrovo BookingStart a Project
cro · 10 min read · 15 July 2026

How to Improve Form Conversions on Your UK Website

A practical guide to improving form conversion rates on UK websites, with sourced benchmarks, field-by-field fixes and tests you can run this week.

Jacob Horgan, Founder, Irvale Studio
Jacob Horgan
Founder, Irvale Studio
A contact form on a UK small business website shown on a laptop and a phone.

Most UK small business websites do not have a traffic problem, they have a form problem. The enquiry form, quote request or booking form is where interest either becomes revenue or quietly leaks away, and the leak is bigger than most owners realise. This guide covers how to measure your form conversion rate properly, what the benchmark data says, and the specific changes that reliably improve completion rates on UK sites.

What is a form conversion rate and how do you calculate it?

A form conversion rate is the percentage of people who complete and submit a form out of a defined starting group. The two versions worth tracking are view-to-completion, which divides submissions by everyone who saw the form, and starter-to-completion, which divides submissions by everyone who began filling it in. The two numbers diagnose different problems, so measure both.

The distinction matters because the fixes are different. If plenty of people see your form but few start it, the problem sits around the form: the offer is unclear, the page has not built enough trust, or the form looks like a chore. If people start but do not finish, the problem sits inside the form: too many fields, confusing validation, or a step that asks for something visitors are not ready to give.

Zuko's form benchmarking database, built from more than 93 million form sessions across 17 sectors, puts the average starter-to-completion rate at around 55.5 percent on desktop and 47.5 percent on mobile. Roughly half the people who begin typing into a form never press submit. That is the gap this article is about closing.

What is a good form conversion rate for a UK website?

According to Zuko's benchmark data, an average form converts around 37.2 percent of desktop viewers and 31.3 percent of mobile viewers into completions, while completion rates for people who actually start the form are around 55.5 percent on desktop and 47.5 percent on mobile. If your rates sit meaningfully below those figures, form design is likely costing you enquiries.

Treat these as orientation points rather than targets, because form type changes everything. A newsletter box with one field behaves nothing like a mortgage application. The honest way to use benchmarks is to compare like with like where you can, and otherwise compare your own form against its own history. For broader context on how whole-site conversion rates vary by industry, see the UK conversion rate benchmarks guide.

70.22%Average documented online shopping cart abandonment rate
Source: Baymard Institute
18%US shoppers who abandoned an order because checkout was too long or complicated
Source: Baymard Institute
47.5%Mobile users who start a form and go on to complete it
Source: Zuko benchmarking

The stakes compound at the sharp end of the funnel. Baymard Institute's cart abandonment research, an aggregate of dozens of separate studies, puts the average documented cart abandonment rate at 70.22 percent, and reports that 18 percent of US shoppers have abandoned an order specifically because the checkout process was too long or complicated. Checkout is simply a form with money at the end of it, so the same design failures cost UK ecommerce sites real orders.

Which fields should you remove from your forms?

Remove every field that does not change what happens after submission. Baymard Institute found the average US checkout displays 23.48 form elements by default, while its testing shows an ideal checkout needs only 12 to 14 elements, or 7 to 8 actual input fields. Most forms carry nearly double the necessary weight, and each unnecessary field is a fresh opportunity to abandon.

Run this audit on your own form. For each field, ask who reads the answer and what they do differently because of it. Company size dropdowns, "how did you hear about us" selectors and second phone number fields almost never survive honest scrutiny. They exist because someone in a meeting once wanted the data, not because the sales process uses it.

The counterargument you will hear is lead quality: longer forms filter out timewasters. There is some truth in it, but the filter is blunt. A long form does not select for serious buyers, it selects for patient ones, and busy trades customers with urgent jobs are often the least patient and the most valuable. A better filter is one qualifying question that matters, such as a budget range or a timeframe, rather than ten administrative fields. Whatever you remove, you can collect later by email once the relationship exists, which is exactly what a good email automation flow is for.

How should you handle UK-specific fields like postcodes and phone numbers?

Accept UK data in the formats real people type it. Postcodes arrive with and without spaces and in mixed case, phone numbers arrive as 07 mobiles, landlines with area codes, and +44 international formats. Your form should normalise all of these silently rather than rejecting them, and a postcode lookup should replace manual address entry wherever an address is needed.

Strict validation against one imagined format is a classic self-inflicted wound on UK sites. If your regex rejects "SW1A1AA" because it lacks a space, or rejects "+44 7700 900123" because it expected a leading zero, you are turning away genuine customers to satisfy a developer's tidy-mindedness. Normalise on the server, not in the visitor's face.

Postcode lookup deserves special mention because it collapses five or six address fields into one, and it plays well with browser autofill. Pair it with correct autocomplete attributes so returning users can complete the whole address block in a couple of taps. For consent checkboxes, keep marketing consent unticked by default and separate from the terms of service, both because UK GDPR expects it and because pre-ticked boxes erode the trust the rest of the page worked to build.

Does a multi-step form convert better than a single long page?

Frequently yes, when each step is short and progress is visible. The strongest evidence-based endorsement comes from the GOV.UK Design System, whose question pages pattern recommends asking one question per page because it helps users understand what they are being asked and lets them focus on one answer at a time.

The GOV.UK question pages pattern is worth studying even if you run a five-page brochure site, because government services live or die on form completion and their guidance is built on years of user research rather than opinion. The same guidance is candid about the exception: sometimes related questions belong together on one page, and research with your own users should decide.

For commercial lead forms, multi-step brings a second advantage. Ask for the easy, engaging answers first, such as the type of job or the preferred date, and capture contact details on an early step. Momentum from small commitments carries people forward, and an early-captured email means a stalled form can still become a follow-up conversation rather than a lost visitor.

How do you fix mobile form conversions?

Mobile forms convert worse than desktop across the board. Zuko's benchmarks show a starter-to-completion rate of around 47.5 percent on mobile against 55.5 percent on desktop. The gap closes with mechanical fixes: correct input types that trigger the right keyboard, autofill attributes, large tap targets, persistent labels above fields, and as little typing as the task allows.

Start with input types, because they are free. type="email" brings up the @ keyboard, type="tel" brings up the number pad, and inputmode="numeric" handles things like discount codes. Add autocomplete attributes for name, email, telephone and postal code so the browser does the typing. Avoid placeholder-only labels, which disappear the moment someone taps in and force short-term memory to do the work the interface should do.

Speed belongs in this list too. A form that shifts around while late-loading scripts settle causes mistaps and abandonment, which is one of several reasons the Core Web Vitals thresholds matter for conversion work and not just rankings.

What error message and validation habits kill conversions?

The most damaging habits are validating too early, wiping the form on failure, and writing errors that name the rule instead of the fix. Validate a field after the visitor leaves it, keep every completed answer intact when something fails, and write error messages that say exactly what to change, next to the field that needs changing.

Inline validation that fires while someone is mid-keystroke tells them they are wrong before they have finished being right, which is both irritating and discouraging. Validate on blur, confirm success quietly, and place error text directly beside the offending field in plain English. "Enter a UK postcode, like M1 2AB" beats "Invalid input" every time.

The unforgivable sin is destroying work. A server-side failure that returns a blank form has just asked the visitor to pay the whole cost of the form twice, and most will decline. Preserve state on every failure, including file uploads where possible. While you are in the code, check what happens on double-tap of the submit button and on a dropped connection, because mobile users meet both regularly.

How do you measure where people abandon your form?

Fire an event for each meaningful form interaction, form view, first field focus, per-field completion, validation error and submission, then build a funnel from those events. The field where drop-off spikes is your highest-value fix, and it is usually a labelling, validation or trust problem rather than a mystery.

GA4 handles this adequately with custom events and a funnel exploration report, and dedicated form analytics tools add per-field timing and error counts without custom code. Whichever you use, segment by device before drawing conclusions, because a field that behaves fine on desktop can be the mobile abandonment point.

Add session recordings for the qualitative layer. Watching five real visitors fail your phone validation teaches you more than a week of staring at aggregate charts. Look for hesitation, repeated corrections and rage-taps around consent language, since those behaviours point at wording problems the numbers cannot see.

What should you test first to improve form conversion rate?

Test in order of expected impact: remove fields, fix mobile mechanics, rewrite the submit button and surrounding reassurance, then experiment with structure such as multi-step. Field removal comes first because Baymard's research shows most forms carry nearly twice the necessary elements, so subtraction usually beats redesign.

A sensible sequence for a UK small business site looks like this. Week one, audit and cut fields, and fix validation messages. Week two, apply the mobile mechanics, input types, autofill and postcode lookup. Week three, work on the moment of commitment: a specific button label such as "Get my free quote" rather than "Submit", plus a line under the button saying what happens next and how quickly someone will respond. Week four, trial a multi-step version against the original if traffic allows.

Be honest about sample sizes. A site taking thirty enquiries a month cannot A/B test its way to statistical certainty, and pretending otherwise wastes months. Make one well-reasoned change at a time, watch the funnel for a few weeks, and keep a simple log of what changed and when. If you are paying for clicks, this work multiplies the return on every pound, which is why form fixes should come before increasing spend on Google Ads, and why structured conversion rate optimisation usually pays for itself faster than any new traffic channel.

When is it worth getting outside help with form optimisation?

Get help when you have applied the mechanical fixes and the funnel still leaks, when your traffic is too low for clean testing and you need experienced judgement instead, or when the form is tangled up with booking systems, CRMs or payment flows that make changes risky to do alone.

Plenty of the work in this guide is genuinely do-it-yourself, and you should capture those wins before paying anyone. The harder problems, such as instrumenting a funnel properly, judging which change to make when data is thin, and rebuilding a form that half a dozen tools depend on, benefit from someone who has seen the patterns across many sites. If enquiries feed a sales process, it is also worth checking the CRM buyer's guide for UK small businesses so the leads you win land somewhere they get acted on.

Next stepGet your forms engineered for revenueIrvale designs, instruments and tests conversion systems for UK small businesses.

The thread running through all of this is respect for the visitor's effort. Every field you cut, every error you clarify and every tap you remove is a small transfer of work from the customer to the business, and the benchmark data shows the market rewards it. Measure your two conversion rates this week, and start with the shortest form that can still do the job.

Common Questions

How to Improve Form Conversions on Your UK Website — FAQ

What is a good form conversion rate for a UK website?

It depends on which number you measure. Zuko, a form analytics company, tracks two rates across its benchmark database of more than 93 million form sessions. The starter-to-completion rate, meaning the share of people who begin typing and go on to submit, sits at around 55.5 percent on desktop and 47.5 percent on mobile. The view-to-completion rate, meaning the share of everyone who merely sees the form, is far lower at around 37.2 percent on desktop and 31.3 percent on mobile. So if roughly half the people who start your form finish it, you are around the average. The more useful exercise is to measure your own two rates, compare them against these benchmarks, and work on whichever gap is larger. A weak view-to-start rate is usually an offer or trust problem. A weak start-to-completion rate is usually a form design problem.

How many fields should a form have?

As few as the next step in your process genuinely requires. Baymard Institute, which has run large-scale checkout usability testing for over a decade, found the average US checkout shows 23.48 form elements by default, while an ideal checkout needs only 12 to 14 elements, or 7 to 8 actual input fields. In other words, most checkout forms are nearly twice as long as they need to be, and the same pattern shows up in lead forms. For a typical UK enquiry form, name, contact method and a message field are often enough. Every extra field must earn its place by changing what happens next. If nobody in your business acts differently based on the answer, the field is friction with no payoff and should be removed or moved to a later conversation.

Do multi-step forms convert better than single-page forms?

Often, yes, though it depends on execution rather than the format itself. The strongest public endorsement of the approach comes from the GOV.UK Design System, which recommends asking one question per page because it helps users understand what they are being asked and lets them focus on a single answer at a time. GOV.UK services handle some of the highest-stakes forms in the country, so that guidance is grounded in extensive user research rather than marketing claims. The practical trade-off is that multi-step forms add clicks, so they work best when the questions are simple and the progress feels quick. They also let you capture contact details on an early step, which means a partial completion still gives you a lead. Test it against your current form rather than assuming either format wins.

Why do mobile forms convert worse than desktop?

Typing is harder, screens are smaller and interruptions are constant, and the benchmark data reflects that. Zuko's form benchmarking shows mobile users complete forms at around 47.5 percent once started, against 55.5 percent on desktop, and the view-to-completion gap is similar at 31.3 percent versus 37.2 percent. The fixes are mostly mechanical. Use the correct HTML input types so the right keyboard appears, enable autofill attributes so the browser can populate name, email and postcode, make tap targets large enough for thumbs, and keep labels above fields rather than inside them so they do not vanish when someone starts typing. On a UK site, a postcode lookup that fills the address in one tap removes several of the most error-prone fields on mobile in one move.

How do I find out where people abandon my form?

Instrument the form so each field interaction fires an event, then look for the step where drop-off spikes. In GA4 you can push events for form start, field focus, validation errors and submission, then build a funnel report from those events. Dedicated form analytics tools do this out of the box and add timing data, error counts per field and comparisons by device. The pattern to look for is a single field with a much higher abandonment or error rate than its neighbours, because that is usually a labelling, validation or trust problem you can fix in an afternoon. Session recordings are a useful companion because they show the behaviour behind the numbers, such as people repeatedly failing phone number validation or hesitating at a marketing consent checkbox.

Next stepGet this run for youWe run Claude AI, websites, booking and SEO for UK small businesses. From £495 a month.
Start a Project