Skip to main content
Version: Next

Replacing the default favicon with your own

if you have an unbranded license replacing the default favicon is easy, but you can't just replace the existing one, You are required to create a custom HTML snippet so VirtFusion can find the replacement icons.

We recommend you generate your favicon images and code using https://realfavicongenerator.net

Once you've generated your package you can place the custom HTML in /opt/virtfusion/app/control/public/custom/favicon.html.

Your code should look similar to this.

<link rel="apple-touch-icon" sizes="180x180" href="/custom/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/custom/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/custom/favicon-16x16.png">
<link rel="manifest" href="/custom/site.webmanifest">
<link rel="shortcut icon" href="/custom/favicon.ico">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/custom/browserconfig.xml">
<meta name="theme-color" content="#ffffff">

Upload the rest of the icons to /opt/virtfusion/app/control/public/custom.

Your custom favicon should now show in all areas of VirtFusion.