Changing the Favicon
Just wondering if it is possible to change the Analyst Portal Favicon and if so does anyone know how?
In addition, we might want to change the browser tab text as well, is this possible?
TIA
Best Answer
-
Martin_Blomgren Customer Ninja IT Monkey ✭✭✭✭You need to overwrite the favicon.ico in CiresonPortal, beaware that this might be restored on portal upgrade.
The document title text is stored in document.title, you could easily overwrite, append or do anything you'd like with it using JS:$(document).ready(function (){<br> document.title = "Company Brand Portal";<br id="null">}
Put the above code in CustomSpace/custom.js
5
Answers
How long it takes to sync is up to IIS and Windows, but I generally would see it update within 2 hours.
If I put my replacement Favicon.ico file in the CustomSpace folder should it overwrite the original or do I have to replace the original in it's actual location?
Also, still looking to modify the text on the browser tab, is this possible?
The document title text is stored in document.title, you could easily overwrite, append or do anything you'd like with it using JS:
Put the above code in CustomSpace/custom.js