A favicon is a small icon used to identify a website in a recognizable way. It appears in different ways on different devices. Most often, you see it as an icon in your favorites when you save the website here to visit it again more quickly. Almost always the tabs in the browser are marked with the icon.
The size and type of the favicon is expected to be different on different devices. I use the website realfavicongenerator.net to create the optimal format of my image for the individual devices. I consider this tool to be tried and tested and the easiest to use. However, there is an alternative newer approach that is used by the Joomla standard template Cassiopeia. If you prefer to use the modern SVG format with an ICO file as a fallback layer, you will find a solution that suits you better under Favicon in Joomla template.
For impatient people: Look at the changed programme code in the diff view[^codeberg.org/astrid/j4examplecode/compare/t40...t41] and transfer these changes into your development version.
Step by step
In this section we create a recognisable image. In the first step, we choose an image. For the example, I chose a yellow PNG file. In the next step, we convert it into different formats using the website realfavicongenerator.net.
Tip: Clear the browser cache if changes to the favicon are not visible during development.
New files
The favicon generator creates 9 files which we copy into our template directory. I put all of them in the directory templates/facile/favicon_package
. These are exactly the files
- android-chrome-192x192.png
- android-chrome-512x512.png
- apple-touch-icon.png
- browserconfig.xml
- favicon-16x16.png
- favicon-32x32.png
- favicon.ico
- mstile-150x150.png
- site.webmanifest
Modified files
templates/facile/index.php
In order for the files to be found, new lines in the file templates/facile/index.php
are required. The variable $templatePath
helps me to create the relativ path.
We introduced the variable
$templatePath
in the last chapter. It is assigned$templatePath = 'templates/' . $this->template;
and thus points to the directory of the current template in the Joomla directory tree. The entry<link rel="icon" type="image/png" sizes="16x16" href="<?php echo $templatePath . '/favicon_package'; ?>/favicon-16x16.png">
thus becomes<link rel="icon" type="image/png" sizes="16x16" href="/PathToJoomla/templates/facile/favicon_package/favicon-16x16.png">
in the HTML source code.
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<jdoc:include type="styles" />
<jdoc:include type="scripts" />
<link rel="apple-touch-icon" sizes="180x180"
href="<?php echo $templatePath . '/favicon_package'; ?>/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32"
href="<?php echo $templatePath . '/favicon_package'; ?>/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16"
href="<?php echo $templatePath . '/favicon_package'; ?>/favicon-16x16.png">
<link rel="manifest" href="<?php echo $templatePath . '/favicon_package'; ?>/site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<script type="module" src="https://unpkg.com/dark-mode-toggle"></script>
</head>
Test your Joomla template
- install your template in Joomla version 4 to test it: Copy the files in the
templates
folder to thetemplates
folder of your Joomla 4 installation. A new installation is not necessary. Continue using the ones from the previous part. Make sure that the favicons are displayed correctly on the devices. Below you can see a representation in the browser Firefox.
Links
Favicon Generator[^realfavicongenerator.net]
Webmentions