Is it possible to change the favicon (the icon that appears on the webpage's tab) in Laserfiche Forms. If yes please provide me a way to change it.
Thank you.
Is it possible to change the favicon (the icon that appears on the webpage's tab) in Laserfiche Forms. If yes please provide me a way to change it.
Thank you.
Hi Shibin,
To change Forms favicon, replace the file C:\Program Files\Laserfiche\Laserfiche Forms\Forms\img\favicon.ico with your own one and restart IIS.
Can't we do this only for a particular form using CSS or JavaScript or by any other method?
Since I didn't want to change the icon on all existing forms, this is the javascript I added to my form:
var link = document.querySelector("link[rel*='icon']");
if (link) {
link.href='/Forms/img/alticon.ico';
}
I put the alticon.ico in C:\Program Files\Laserfiche\Laserfiche Forms\Forms\img\
Hope this helps others.
Thanks for the information Rui