Blog/Web
WEB

Responsive Web Design in Kansas City: What Actually Passes

A responsive site needs more than a fluid layout. Here is the viewport tag, tap target sizing, and cost numbers Kansas City owners should ask for.

BY SUVYSOFT TEAM
A person holding a smartphone above an open laptop keyboard, checking a website across devices

Responsive web design means one site, one URL, and one codebase that rearranges itself to fit a phone, a tablet, or a desktop screen, instead of a separate mobile site. For a Kansas City business, that single build has to pass three separate checks: a valid viewport meta tag, tap targets sized to Google's own Lighthouse standard, and the accessibility minimum under WCAG 2.5.8. Most local sites pass one of the three and assume they are done.

Suvysoft is a Kansas City studio, and "responsive" is the word we hear misused most often in this metro. An owner says their site is responsive because it does not look broken on a phone. That is a different claim than passing the checks that actually decide whether Google treats the site as mobile-friendly and whether a person with limited dexterity can use it without triggering an accessibility complaint. Below is what the term actually requires, with the numbers.

What does "responsive" actually mean, beyond looking okay on a phone?

A responsive site serves the exact same HTML and the exact same URL to every device, and lets CSS media queries decide how that HTML gets laid out. Google's own guidance is direct about which approach it wants: "Google recommends Responsive Web Design... because it's the easiest design pattern to implement and maintain," over the older alternatives of a separate mobile subdomain (m.example.com) or device-specific HTML served by the server. (Google Search Central, mobile-first indexing guidance)

That single-URL requirement matters more than it used to. Google finished moving every site in its index to mobile-first indexing by July 2024, which means the mobile version of a page, not the desktop version, is what gets crawled, ranked, and scored, even for a searcher sitting at a desktop. A site that looks fine on a laptop but breaks on a phone is not a site with a minor cosmetic issue. It is a site Google is ranking off a broken version.

A site that "looks okay" on a phone can still fail every one of the checks below. Looking okay is a visual judgment call made by a person scrolling once. The checks below are pass or fail.

What is the viewport meta tag, and why does a missing one fail everything else?

The viewport meta tag is one line of HTML in the page head: <meta name="viewport" content="width=device-width, initial-scale=1">. Without it, a mobile browser assumes the page was built for a 980px-wide desktop screen and shrinks the whole thing to fit, which is why an un-tagged page on a phone renders with 4-point text and a layout you have to pinch and zoom to read. None of the media queries a developer wrote will fire, because the browser never adopts the phone's actual width as its reference point.

This is not a rare mistake. HTTP Archive's 2025 Web Almanac, which crawls millions of live pages twice a year, found the viewport meta tag present on 95.2% of mobile pages and 93.1% of desktop pages it tested. That means roughly one in twenty mobile pages on the open web is still missing the single line of markup that makes every other responsive decision possible, before a single breakpoint or image size gets evaluated. (HTTP Archive, 2025 Web Almanac, SEO chapter)

How big do buttons and links actually need to be?

This is where most Kansas City sites we review fail, and it is where "responsive" and "accessible" stop meaning the same thing. Three different standards apply to the same button, and they disagree with each other:

StandardMinimum target sizeWhat it actually governs
WCAG 2.5.8 (Level AA)24 by 24 CSS pxLegal accessibility minimum, the standard behind ADA-related digital access complaints
Google Lighthouse tap target audit48 by 48 CSS px, 8px spacingMobile usability signal, flagged directly in PageSpeed Insights
Apple Human Interface Guidelines44 by 44 ptNative app design convention, often copied into web templates by habit

WCAG 2.5.8, part of the WCAG 2.2 update, sets the floor: a clickable element needs a 24 by 24 CSS pixel target, with padding counting toward that size, unless one of five narrow exceptions applies (adequate spacing from neighboring targets, an equivalent larger control elsewhere on the page, an inline text link, a browser-default control, or a case where the size is essential to the information conveyed, like a map pin). It is a Level AA success criterion, the same conformance tier most business website accessibility statements already claim. (W3C, Understanding SC 2.5.8)

Google's Lighthouse audit sets a higher bar for a different reason. It fails a target under 48 by 48 CSS pixels, or one where less than 25% of the area within 48px of its center is free of overlap with another target, and recommends at least 8px of spacing between adjacent targets. This is not a legal requirement. It is the number Google's own tooling checks, which means it is the number that shows up as a warning in PageSpeed Insights and can surface as a mobile usability issue in Search Console. (Chrome Developers, tap targets audit)

A button sized to pass WCAG's 24px legal minimum can still fail Google's 48px usability check. A lot of templates split the difference by copying Apple's 44 by 44 point convention for native iOS controls, which clears the accessibility floor but still falls short of what Lighthouse wants. None of the three numbers is wrong. They answer three different questions, and a site built to only one of them is exposed on the other two.

What breakpoints should a Kansas City small business site actually use?

Breakpoints are the screen widths where the layout restructures, and there is no universal standard, only what the content on a given page needs. A workable starting set for a typical small business site: a mobile layout under roughly 480px, a small-tablet layout from 480 to 768px, a tablet/small-laptop layout from 768 to 1024px, and a desktop layout above that. What changes at each breakpoint matters more than the exact pixel value: navigation should collapse to a menu button well before text starts wrapping awkwardly, and multi-column content should never drop to a single column so late that a user has already scrolled past three screens of white space getting there.

The mistake we see most in Kansas City rebuilds, including in Overland Park and Olathe projects we have picked up mid-build from another shop, is a site with breakpoints tuned to whatever device the developer tested on, not the actual traffic mix. Mobile devices, phones only, not counting tablets, made up 51.48% of global website traffic in the second quarter of 2026, and that share climbs past 62% once tablets are counted in, per industry traffic tracking. A site tuned primarily for a designer's laptop is optimized for a minority of its own visitors. Our work across the Kansas City metro starts with the phone layout first for exactly this reason.

What does responsive web design actually cost in Kansas City?

Published 2026 pricing puts a small business site, five to ten pages, fully responsive, at $5,000 to $9,000 for the build itself, with an all-in first-year figure, design, real copy, on-page SEO, mobile speed work, hosting, landing between $2,500 and $9,500 depending on scope. That range tracks with the fuller Kansas City web development pricing breakdown we publish separately: custom builds starting around $1,500 for a simple site, most small business projects landing in the $5,000 to $8,500 band once SEO and content work are included.

Two things push that number up specifically for responsive work rather than a generic build: real device testing across at least three breakpoints instead of a browser-window resize check, and a second design pass for navigation, since a menu that works as a horizontal bar at 1200px almost never works unchanged as a collapsed menu at 375px.

Is a WordPress theme automatically responsive?

Most current WordPress and Shopify themes ship with a viewport tag and fluid grid out of the box, so the base layout will generally reflow on a phone without custom work. That is not the same as passing the tap target and spacing checks above, or the same as the fonts, image, and script decisions that decide whether the responsive layout also loads fast. Theme buttons, especially in navigation menus and footer link lists, are frequently sized for a mouse cursor, not a thumb, and stock themes rarely test against the 48px Lighthouse standard. A responsive-by-default theme still needs a manual pass on interactive elements before it should be called done.

Frequently asked questions

Is responsive design the same as mobile-friendly?

No. Responsive design is the technical method, one HTML codebase and one URL, that CSS reflows per screen size. Mobile-friendly is the outcome Google measures, which depends on responsive design being implemented correctly plus passing checks like the viewport tag and tap target sizing. A site can be technically responsive and still fail a mobile-friendliness check if buttons are too small or text requires zooming.

Does Google still have a Mobile-Friendly Test tool?

Google retired the standalone Mobile-Friendly Test tool in December 2023. The mobile usability data it used to show now lives inside Google Search Console, under the Page Experience section, and the underlying checks, tap target size, text legibility, viewport configuration, are the same ones Lighthouse and PageSpeed Insights run.

How many breakpoints does a small business site actually need?

Three is usually enough: a mobile layout, a tablet layout, and a desktop layout. Adding more breakpoints for large monitors or narrow phones rarely changes the outcome for a typical five-to-ten-page marketing site, and it multiplies the QA work needed every time content changes.

Can an old, non-responsive website still rank on Google?

It can appear in results, but mobile-first indexing means Google is evaluating the mobile rendering of that page, not the desktop one, for every ranking decision including desktop searches. A non-responsive site that renders poorly on mobile is being judged on its worst version, which shows up as lower rankings across the board, not just on mobile search results.

What is the single most common responsive design mistake you see in Kansas City?

Tap targets sized for a mouse. Navigation links and buttons built at 24 to 32 pixels tall look fine in a desktop browser and pass a casual glance on a phone, but they sit under Google's 48px Lighthouse threshold and often under the WCAG accessibility minimum once spacing is counted. It is the single fix most local sites need and the one most owners never think to ask about.

Does responsive design affect page speed?

Yes, in both directions. A responsive site done well serves smaller images and less markup to a phone than to a desktop, which helps mobile load times. A responsive site done poorly loads every asset for every breakpoint regardless of which one the visitor is using, which is one of the more common causes of a slow mobile Lighthouse score on an otherwise modern-looking site.

Responsive web design is not a design style. It is a small, checkable list: one URL, a working viewport tag, and interactive elements sized to whichever standard actually applies, legal, Google's, or both. Our web development team runs all three checks on every Kansas City build before it ships, and a free breakdown of where your current site stands takes about fifteen minutes. Start a project and we will send back the specific numbers, not a general opinion.

Want us to do this for you?

Free 20-minute call

Tell us your goal. We will come back with a one-page document of the smallest moves to make for your business.

Start the conversation