Pages lack an apple-touch-icon, causing poor iOS home screen appearance.
By Seoxpert Editorial · Published
When users add your site to their iOS home screen, Apple Touch Icons provide a branded, professional appearance. Without this icon, iOS uses a generic screenshot, which can look unprofessional and diminish your site's mobile and PWA experience.
Sites without an apple-touch-icon appear less polished when saved to iOS home screens.
The Assets Agent scans each page for a <link rel="apple-touch-icon"> tag in the <head> section.
Missing apple-touch-icon (problem)
<!-- No apple-touch-icon link present -->
<head>
<title>My Site</title>
<!-- Missing apple-touch-icon link -->
</head>Correct apple-touch-icon (fix)
<head>
<title>My Site</title>
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
</head>iOS will use a screenshot of your page as the icon, which may look unprofessional and unbranded.
The recommended size is 180×180 pixels for optimal display on modern iOS devices.
No, iOS does not use favicon.ico for home screen icons. You need a separate apple-touch-icon image.
It's best practice to include it in the <head> of all pages, typically via a shared template or layout.
Run a scan to see if Pages Missing Apple Touch Icon affects your pages.
Scan my website →