New favicon?

Besides which, considering the feedback we have received so far, we have reverted the favicon back to the original.

It may take an indeterminate amount of time before it displays the original one due to various caches at play.
 
we have reverted the favicon back to the original.

Thank you, Chris.

Why are these two favicon's different?

https://xenforo.com/community/styles/default/xenforo/xenforo-favicon.ico

https://xenforo.com/community/styles/default/xenforo/xenforo-favicon.png

I assume you have entered one of these URLs here, which one?

1588347348021.webp
 
We use the PNG file in XF 2.x.

I think we might have used the ICO by default in XF 1.x.
 
Forgetting the favicon for a minute....

XF crew, did you guys manually add these tags to the xenforo.com instance or is there support for them in XF somewhere itself that I missed? 🤔
Code:
<meta property="og:logo" content="styles/default/xfs/xenforo-logo-512.png" size="512x512" />
<meta property="og:logo" content="styles/default/xfs/xenforo-logo-256.png" size="256x256" />
<meta property="og:logo" content="styles/default/xfs/xenforo-logo-128.png" size="128x128" />
 
Original favicon is now showing properly in Firefox, both in the browser tab as well as the Bookmarks Toolbar.

Thank you.
 
It may take an indeterminate amount of time before it displays the original one due to various caches at play.
I've taken to appending cache buster strings to favicons because otherwise browsers randomly cache them for non-deterministic amounts of time.
 
To properly work at multiple resolutions and various apple/android/MS tablets you kinda need a stanza like the following;
HTML:
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png?v={$versionId}">
<link rel="icon" type="image/png" href="/favicon-32x32.png?v={$versionId}" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png?v={$versionId}" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png?v={$versionId}" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png?v={$versionId}" sizes="16x16">
<link rel="manifest" href="/manifest.json?v={$versionId}">
<link rel="shortcut icon" href="/favicon.ico?v={$versionId}">
<meta name="msapplication-TileColor" content="{$backgroundColor}">
<meta name="msapplication-TileImage" content="/mstile-144x144.png?v={$versionId}">

Rather than just set a single complex icon everywhere.
Where i can add this?
 
To properly work at multiple resolutions and various apple/android/MS tablets you kinda need a stanza like the following;
HTML:
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png?v={$versionId}">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png?v={$versionId}">
<link rel="icon" type="image/png" href="/favicon-32x32.png?v={$versionId}" sizes="32x32">
<link rel="icon" type="image/png" href="/android-chrome-192x192.png?v={$versionId}" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-96x96.png?v={$versionId}" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png?v={$versionId}" sizes="16x16">
<link rel="manifest" href="/manifest.json?v={$versionId}">
<link rel="shortcut icon" href="/favicon.ico?v={$versionId}">
<meta name="msapplication-TileColor" content="{$backgroundColor}">
<meta name="msapplication-TileImage" content="/mstile-144x144.png?v={$versionId}">

Rather than just set a single complex icon everywhere.
You can create the favicons and get this code at


Free.
 
Back
Top Bottom