Archive for the ‘Development’ Category

My Site Updates

I have finally gotten around to getting this site updated, i haven’t had a complete chance to get everything uploaded yet, but that will be coming. I’ve got the extensions for my cell phone back (writting this post from the cell), missed posting up here. It appears I will never get a moment to stand/sit still, so having the phone tie-in will be a big help. I brought over some of the old database records, so shouldn’t look too bare!!

Creating a Custom Icon for iPhone

iPhoneI hadn’t really thought about this and actually thought that the iPhone used the Favicon.ico as the image used for the icon on the iPhone.  I noticed when I attempted this, it was instead loading a full screen of the website and ignoring the Favicon I had on the site.  A simple Google search resolved this issue, but thought I’d throw down some of the basics.

If you’d like your site to have a custom icon appear on the springboard when people add it, create a 57px-57px PNG, save the image as apple-touch-icon.png, and upload it to the root folder of your site.

If you don’t have access to the root folder of your site, or you’d like to put the icon elsewhere, add the following line to the <head> of your site:

<link rel=”apple-touch-icon” href=”/path/to/filename.png” /> (Don’t forget to upload the file to that path).

Once done, test to insure that it is working correctly.

Return top