When bookmarking a site on your iOS device using the “Save to Home Screen” button, Safari will save an icon on your device which is simply based on a snapshot of the site homepage itself. However, you can add your own custom bookmark icons to be used instead. Plus it’s very easy to do. Here’s how:
1. Create 3 versions of your icon in 57×57, 72×72 and 114×114 pixel sizes.
2. Add your images to the root folder.
3. Add code to your site:
WordPress
Add this code into your header.php file in your theme folder, just above the closing </head> tag.
1 2 3 | <link rel="apple-touch-icon-precomposed" href="<?php bloginfo('template_url'); ?>/apple-touch-icon.png" /> <link rel="apple-touch-icon-precomposed" href="<?php bloginfo('template_url'); ?>/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon-precomposed" href="<?php bloginfo('template_url'); ?>/apple-touch-icon-114x114.png" /> |
The above code allows for the icon to be left as it is, and not for the device to add the gloss highlight. However if you want the highlight added to the icon by the device, use this instead:
1 2 3 | <link rel="apple-touch-icon" href="<?php bloginfo('template_url'); ?>/apple-touch-icon.png" /> <link rel="apple-touch-icon" href="<?php bloginfo('template_url'); ?>/apple-touch-icon-72x72.png" /> <link rel="apple-touch-icon" href="<?php bloginfo('template_url'); ?>/apple-touch-icon-114x114.png" /> |
Static html
Add this code to the index.html file, just above the closing </head> tag.
1 2 3 | <link rel="apple-touch-icon-precomposed" href="apple-touch-icon.png"/> <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-72x72.png"/> <link rel="apple-touch-icon-precomposed" href="apple-touch-icon-114x114.png"/> |
The above code allows for the icon to be left as it is, and not for the device to add the gloss highlight. However if you want the highlight added to the icon by the device, use this instead:
1 2 3 | <link rel="apple-touch-icon" href="apple-touch-icon.png"/> <link rel="apple-touch-icon" href="apple-touch-icon-72x72.png"/> <link rel="apple-touch-icon" href="apple-touch-icon-114x114.png"/> |
That's it.

