Skip to main content

Add Your Super Site to a Mobile Home Screen

Written by Charlene

You can make a published Super site easier to access from a phone by adding it to the device’s home screen with a custom icon and app name.

This is useful if you want your Super site to feel more like a lightweight app for clients, team members, dashboards, member portals, or internal tools.

Before you start

Prepare a square PNG image to use as your app icon.

The image must be publicly accessible through a direct image URL. Any image hosting service or CDN will work as long as opening the URL in a browser displays the image directly.

Add the required code

In your Super dashboard, open your site and navigate to:

Site Settings → Code → Head

Then add the following code:

<link rel="icon" type="image/png" href="YOUR_ICON_IMAGE_URL">  
<link rel="apple-touch-icon" href="YOUR_ICON_IMAGE_URL">

<meta name="theme-color" content="#071a3d">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="YOUR_APP_NAME">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">

Replace:

  • YOUR_ICON_IMAGE_URL with the direct URL of your PNG icon.

  • YOUR_APP_NAME with the name you want to appear on the device's home screen.

Add the site to your home screen

After publishing the changes:

On Android (Chrome)

  1. Open your website in Chrome.

  2. Tap the three-dot menu in the top-right corner.

  3. Select Add to Home screen.

  4. Confirm the app name and tap Add.

The site will appear on your home screen using the custom icon you configured.

On iPhone (Safari)

  1. Open your website in Safari.

  2. Tap the Share button.

  3. Select Add to Home Screen.

  4. Confirm the name and tap Add.

Your Super site can now be launched directly from the home screen, providing a more app-like experience for users.

Example:

Sample output (Android):

(Insert screenshot here)

Did this answer your question?