Touch targets too small: what it is, why it matters, and how to fix it
Interactive elements have explicit inline dimensions smaller than 44x44 CSS pixels, making them difficult to activate on touch devices.
Where this fits: accessibility in SEO
Why touch targets too small hurts your rankings
WCAG 2.5.8 (Target Size) recommends a minimum target size of 44x44px. Small touch targets cause frequent mis-taps, especially for users with motor impairments, large fingers, or those using assistive devices. This directly impacts mobile usability and conversion rates.
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site.
How to fix it
Increase the clickable/tappable area of interactive elements to at least 44x44px. Use padding to increase the target area without changing the visual size if needed.
.small-button {
min-width: 44px;
min-height: 44px;
padding: 12px;
}Frequently asked questions
What does "Touch targets too small" mean?
Interactive elements have explicit inline dimensions smaller than 44x44 CSS pixels, making them difficult to activate on touch devices.
Why does touch targets too small matter for SEO?
WCAG 2.5.8 (Target Size) recommends a minimum target size of 44x44px. Small touch targets cause frequent mis-taps, especially for users with motor impairments, large fingers, or those using assistive devices. This directly impacts mobile usability and conversion rates.
How do I fix touch targets too small?
Increase the clickable/tappable area of interactive elements to at least 44x44px. Use padding to increase the target area without changing the visual size if needed.
How serious is this issue?
This is a medium-severity issue: individually modest, but it compounds — dozens of medium issues across hundreds of pages add up to a real quality deficit in how search engines assess the site. It belongs to the accessibility family of checks.
How do I find every page affected by this on my site?
Run a free Dr Urls audit: it crawls your site, detects touch targets too small on every affected page, shows example URLs, and generates a ready-to-use fix task. Re-scan after fixing to verify the issue is gone.
Does your site have this issue?
A free Dr Urls audit crawls your site, finds every page affected by touch targets too small, and hands you a ready-made fix task.
Check my site free