Would you only need to create it and add it to the style sheet? Or are you supposed to add it some other way?EA117 wrote: ↑Tue Oct 02, 2018 11:36 amFor what it's worth, one that I used on my recent phpBB upgrade was another one mentioned here in the phpBB forum, https://realfavicongenerator.net/
That one seemed to be really high-functioning, in the way that once you submitted your image, it provided live previews and further customizations of the images and data being generated for each target platform.
Was able to integrate almost everything as part of a custom phpBB style; except for favicon.ico, apple-touch-icon.png and browserconfig.xml which had to also be duplicated into the root of the web site, for agents which wouldn't have used or expected HTTP header-defined locations for these items.
You would likely end up adding it to the overall_header.html of the phpBB style you're using. Not just adding items to a literal CSS style sheet, if that's what you meant. Most all of the items would end up being
<link>
or <meta>
items added to the <head>
section of the overall_header.html.Code: Select all
<link rel="apple-touch-icon" sizes="180x180" href="{T_THEME_PATH}/images/apple-touch-icon.png?v=zXbdKz68p3">
<link rel="icon" type="image/png" sizes="32x32" href="{T_THEME_PATH}/images/favicon-32x32.png?v=zXbdKz68p3">
<link rel="icon" type="image/png" sizes="16x16" href="{T_THEME_PATH}/images/favicon-16x16.png?v=zXbdKz68p3">
<link rel="manifest" href="{T_THEME_PATH}/images/site.webmanifest?v=zXbdKz68p3">
<link rel="mask-icon" href="{T_THEME_PATH}/images/safari-pinned-tab.svg?v=zXbdKz68p3" color="#5bbad5">
<link rel="shortcut icon" href="{T_THEME_PATH}/images/favicon.ico?v=zXbdKz68p3">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
{T_THEME_PATH}
was just because I was choosing to locate the assets within the style directory of my own custom style. You could just as easily have used paths that referenced files at the root of the web site, or where ever you had chosen to locate them.Users browsing this forum: No registered users and 20 guests