How to Fix Tap Targets Too Small on Mobile
errorThe Problem
Your mobile page has buttons, links, or interactive elements that are too small or too close together for comfortable tapping. Google's mobile usability standards require tap targets to be at least 48x48 CSS pixels with adequate spacing between them.
trending_upWhy It Matters for SEO
Small tap targets frustrate mobile users — they tap the wrong thing, accidentally navigate away, or give up entirely. Since over 60% of ecommerce traffic is mobile, this directly impacts your conversion rate. Google also uses tap target size as a mobile usability signal in Core Web Vitals assessments.
buildHow to Fix It
- 1
Identify small tap targets: run PageSpeed Insights on mobile and check 'Tap targets are not sized appropriately'.
- 2
Common culprits: footer links, product option selectors, navigation menu items.
- 3
Open your theme's CSS file (usually assets/base.css or sections/header.liquid).
- 4
Increase padding on clickable elements to meet the 48px minimum.
- 5
Add adequate spacing between adjacent links and buttons.
/* Add to your theme CSS */
a, button, select, input[type="submit"], .btn {
min-height: 48px;
min-width: 48px;
padding: 12px 16px;
}
.footer a {
display: inline-block;
padding: 8px 4px;
min-height: 48px;
line-height: 32px;
}
.product-form__option label {
min-height: 48px;
min-width: 48px;
display: inline-flex;
align-items: center;
justify-content: center;
}Related Fix Guides
How to Fix a Missing Viewport Meta Tag on Shopify & WooCommerce
Fix the missing viewport meta tag on your store. Without it, your site looks broken on mobile devices. Copy-paste fix included.
How to Fix Poor INP (Interaction to Next Paint) on Your Store
Poor INP means your store feels sluggish when customers click buttons. Learn how to fix slow interaction response times on Shopify and WooCommerce.
Want to check if YOUR store has this issue?
Scan your site for free — get copy-paste fixes in 60 seconds.
searchScan Now — It's Free