An element should appear only on smaller screens, hidden everywhere else.
⚡ Quick Fix (TL;DR)
The Culprit: An element built specifically for mobile (like a condensed nav) shouldn't also show on desktop.
The Fix: Hide the mobile-only element once the viewport widens past the standard 600px breakpoint used across this site.
@media (min-width: 601px) {
.mobile-only { display: none; }
} Was this helpful? Thanks for the feedback!
Tagged in :
More from the field
Bisect to an Empty Baseline Before Trusting Any Single Theory
.
Multiple plausible-sounding theories for a bug each turned out to be wrong when actually tested – time was spent building fixes…
A Security Dashboard’s Activity Log Can Lag a Full Day Behind Real Time
.
Trying to check a security tool’s activity log for an event that had just happened showed nothing at all.