Favicon not showing in Google search? Here's why
Your favicon can display perfectly in every browser tab and still not show up next to your site in Google's search results. That's because Google checks a separate, stricter set of rules before it will use your icon — a working favicon.ico isn't enough on its own.
What Google actually requires
According to Google's own documentation, a favicon shown in search results needs to:
- Be a square image, at least 8×8 pixels, though Google recommends something larger than 48×48px for a sharp result
- Live at a stable URL that doesn't change or redirect unpredictably
- Be declared with a
<link>tag usingrel="icon",rel="shortcut icon",rel="apple-touch-icon", orrel="apple-touch-icon-precomposed" - Be crawlable — not blocked by
robots.txt - Visually represent your brand, not a generic or unrelated image
One detail that trips people up: Google only supports one favicon per hostname. If your site lives at www.example.com, subdirectories like /blog/ inherit that same icon — they can't have their own. A separate subdomain, like shop.example.com, can have a different one.
The most common causes of a missing favicon in search
- robots.txt is blocking it. If your
robots.txtdisallows the folder your favicon lives in, Googlebot can't fetch it at all. - The icon is too small or oddly shaped. A 16×16 icon technically works in a browser tab but may be judged too low-resolution for search.
- Google hasn't recrawled your homepage yet. Favicons are cached separately from your page content, and updates can take anywhere from a few days to a few weeks to appear.
- The icon URL redirects or 404s. If the declared favicon path returns an error or bounces through a redirect chain, Google may quietly drop it.
How to fix it
- Confirm your icon loads directly by visiting its URL in a browser.
- Check
robots.txtfor any rule that would block the icon's path or your assets folder. - Make sure at least one
<link rel="icon">tag points to an icon 48×48px or larger. - In Google Search Console, use the URL Inspection tool on your homepage and request indexing to nudge a recrawl.
- Give it time. Even after a fix, the change in search results can lag behind what you see in your own browser.
Want to check all of this for your own site in one pass?
Check your faviconRelated reading: favicon size guide · fixing a broken Apple touch icon