Background
Archive
Journal Entry

My Website Looks Different on My Phone: How to Fix It

Documented
Capacity
9 MIN READ
Domain
Website Performance & Ops

You open your website on your laptop. Everything looks fine. Then you check it on your phone, and suddenly the layout’s wrong, text is microscopic, or buttons are impossible to tap. This isn’t just annoying—it’s costing you enquiries.

According to Statista’s UK web traffic data, mobile devices account for around 55% of web page views in the United Kingdom. If your site breaks on phones, you’re effectively turning away half your potential customers before they even read a word.

This guide explains what’s happening, how to diagnose it, and when band-aid fixes aren’t enough.

What Is Responsive Design (And Why Does It Matter)?

Responsive design means your website adapts gracefully to different screen sizes—desktop, tablet, phone—without breaking layout, hiding content, or making interactions impossible.

When a site isn’t responsive, you get problems like:

  • Text shrunk to unreadable sizes
  • Buttons stacked so close you tap the wrong one
  • Images stretched, cropped, or distorted
  • Horizontal scrolling that hides half the page
  • Pop-ups that cover the entire screen with no way to close them

And mobile users don’t wait around. Research from Baymard Institute shows that 61% of users won’t return to a mobile site they had trouble accessing, and 40% will visit a competitor instead.

If your site wasn’t built mobile-first, these issues compound. Desktop-first designs often bolt mobile support on as an afterthought, leading to fragile fixes that break with the next update.

Common Mobile Display Issues (And What Causes Them)

1. Text Too Small to Read

Your desktop layout might use 14px body text, which looks fine on a 27-inch monitor. On a 5-inch phone screen, users have to pinch-zoom every paragraph.

Cause: Fixed pixel sizes instead of relative units (rem, em) that scale with screen size.

2. Buttons Too Close Together

CTAs and navigation links placed 10 pixels apart work with a mouse cursor. On mobile, the average tap target needs to be at least 48×48 pixels to avoid accidental taps.

Cause: Touch targets designed for precise mouse pointers, not thumbs.

3. Images Stretched or Cropped Weirdly

Desktop hero images often use wide aspect ratios (16:9 or wider). When squeezed onto a vertical phone screen, they either distort or crop out the key subject.

Cause: Single-size images without mobile-optimised variants or art direction rules.

4. Horizontal Scrolling

Nothing says “this site wasn’t built for mobile” like having to scroll sideways to read a sentence.

Cause: Fixed-width containers (e.g., width: 1200px) that don’t shrink below desktop breakpoints, or images without max-width: 100%.

5. Slow Loading on Mobile Data

Page speed issues multiply on mobile networks. A 2MB hero image that loads in two seconds on fibre broadband can take 15 seconds on patchy 4G.

Google’s Core Web Vitals research shows that 53% of mobile users abandon a page if it takes longer than three seconds to load. And since Google uses mobile-first indexing, poor mobile performance directly damages your search rankings.

Cause: Uncompressed images, render-blocking scripts, or no lazy loading.

6. Pop-Ups Blocking Content

Email capture modals that are easy to dismiss on desktop often cover the entire mobile viewport with no visible close button.

Cause: Overlays designed without touch-safe dismiss areas or responsive positioning.

How to Diagnose Mobile Display Problems

Before you fix anything, confirm what’s actually broken. Here’s the process Fernside Studio uses when clients report mobile website issues.

Step 1: Test on Real Devices

Emulators are useful, but nothing beats real hardware. Test your site on:

  • At least two different phones (iOS and Android)
  • Different screen sizes (a compact iPhone SE vs a large Samsung Galaxy)
  • Both portrait and landscape orientations

Check every key page: homepage, services, contact form, pricing. Does everything render? Can you tap every button? Is text legible without zooming?

Step 2: Use Chrome DevTools Device Mode

Open your site in Chrome, press F12, and click the device toggle icon (or press Ctrl+Shift+M on Windows, Cmd+Shift+M on Mac).

You can:

  • Preview different device sizes (iPhone 14, Pixel 7, iPad)
  • Throttle network speed to simulate 4G
  • Check responsive breakpoints by dragging the viewport width

This won’t catch every touch interaction issue, but it’s fast for spotting layout breaks.

Step 3: Run Google’s Mobile-Friendly Test

Go to Google’s Mobile-Friendly Test and enter your URL.

Google will flag common issues like:

  • Text too small to read
  • Clickable elements too close together
  • Content wider than screen
  • Viewport not set

It also shows you a screenshot of how Googlebot sees your mobile page—often eye-opening if you’ve never checked.

Step 4: Check Core Web Vitals in Search Console

If your site is verified in Google Search Console, check the Core Web Vitals report under Experience.

You’ll see mobile performance data for:

  • LCP (Largest Contentful Paint) — how fast your main content loads
  • INP (Interaction to Next Paint) — how responsive the page is to taps
  • CLS (Cumulative Layout Shift) — whether elements jump around during load

Pages that fail mobile Core Web Vitals get a ranking penalty. If half your pages are flagged “Poor,” mobile display issues are hurting more than just user experience.

When to Fix vs When to Rebuild

Once you’ve identified the problems, you face a choice: patch the existing site or start fresh.

Small Fixes Worth Trying

If your site has one or two isolated issues—like a single oversized image or a pop-up without a mobile close button—targeted fixes can work:

  • Add max-width: 100%; height: auto; to rogue images
  • Increase tap target sizes in CSS (min-height: 48px; min-width: 48px;)
  • Adjust font sizes using rem units instead of pixels
  • Add a meta viewport tag if it’s missing: <meta name="viewport" content="width=device-width, initial-scale=1">

These tweaks can rescue a fundamentally sound design that’s missing a few mobile optimisations.

When a Rebuild Is the Honest Answer

If your site suffers from multiple issues—horizontal scrolling, illegible text, unusable navigation, slow mobile load times—band-aid CSS won’t fix the underlying problem.

Here’s the reality: if the site was built desktop-first without mobile considerations, trying to retrofit responsive design is like trying to fit a square peg in a round hole. You’ll spend weeks chasing edge cases, breaking other parts of the layout, and still end up with a clunky experience.

Modern frameworks and mobile-first design strategies start with the smallest screen and progressively enhance. This approach eliminates most common mobile issues from day one.

If you’re seeing complaints from users, losing mobile conversions, or failing Google’s mobile tests across multiple pages, a website redesign built on a mobile-first foundation will cost less in the long run than endless patching.

How Fernside Studio Builds Mobile-First

Every site we deliver—whether a Launch Sprint one-pager or a Studio Site with multiple service pages—is designed mobile-first using Astro and Tailwind CSS.

That means:

  • Fluid typography that scales smoothly from phone to desktop
  • Touch-optimised navigation with thumb-friendly tap targets
  • Responsive images served in modern formats (WebP/AVIF) with lazy loading
  • No horizontal scrolling, no tiny text, no overlapping buttons
  • Tested on real devices before handoff

We also include performance optimisation as standard, so your mobile page speed scores stay in the green even on slower networks.

And if you need to update content safely after launch, the Fernside CMS add-on gives you a hosted editor that preserves responsive behaviour across all screen sizes. No accidental layout breaks when you swap an image or tweak a heading.

What to Do If Your Site Is Broken on Mobile

If you’ve confirmed mobile display issues and you’re not sure whether to fix or rebuild, here’s the decision tree:

  1. Run the diagnostics — use real devices, Chrome DevTools, and Google’s Mobile-Friendly Test to catalogue the issues.
  2. Assess scope — one or two isolated problems? Try targeted fixes. Multiple layout breaks, slow load times, or failing Core Web Vitals? Consider a rebuild.
  3. Check your goals — if mobile conversions matter (and they do for most SMBs), investing in a proper mobile-first rebuild will pay for itself in recovered enquiries.
  4. Get a second opinion — if you’re unsure, book a call with a studio that specialises in mobile-first builds. At Fernside Studio, we’ll tell you honestly whether your site can be patched or needs replacing.

You can explore more about whether your website is good enough or dive into our quarterly review template to benchmark mobile performance against your business goals.

Mobile Isn’t Optional Anymore

When more than half of UK web traffic comes from phones, a broken mobile experience isn’t a minor UX annoyance—it’s a business liability.

If your site looks different (read: worse) on mobile, you’re bleeding potential customers to competitors with properly responsive sites. And if Google’s mobile-first indexing penalises your search rankings on top of poor user experience, you’re fighting an uphill battle for visibility.

The good news? Modern web development makes mobile-first design straightforward when done right from the start. And if your current site wasn’t built that way, a clean rebuild often costs less than trying to reverse-engineer responsiveness into a desktop-only foundation.

Every day your site stays broken on mobile, you’re handing qualified visitors to competitors with properly responsive sites. The businesses winning online aren’t waiting for a convenient time to fix this. They’re building now.

If you’re ready to fix your mobile display issues properly, book a Studio Site engagement and we’ll build you a fast, responsive site that works beautifully on every device. Or if you just need a quick one-pager to test the market, a Launch Sprint gets you live in five days with full mobile optimisation included. We only take on a handful of builds each month — check availability before the calendar fills.

Your mobile visitors are already here. Make sure your website shows up for them.

Further Reading & Sources

Internal resources:

External sources:

Say hello

Quick intro