You are not logged in.
Hi.
I am trying to add the favicon to my website. I have the image and code to insert but do not know where to add.
Can anyone advise?
Offline
You should be able to place favicon.ico into the /site/ directory and it should automatically work in most browsers.
Offline
Hi Tim.
Its not working for me.
I added the favicon image to the directory and also added the code to the index.php page at: http://ipopowerlifting.ie/website/site/index.php but when I viewed then all that I could view was a white blank page with no website so I reversed what I did to get website back
Offline
favicon code: <link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
Offline
If your website is being hosted at a subdirectory rather than the root directory, you'll want to use this for the favicon code:
<link rel="shortcut icon" type="image/x-icon" href="<?=STATIC_ROOT?>favicon.ico">
That will tell it to look inside /website/site/ for favicon.ico rather than /
Offline
aaahh!
Thank you
Offline