CodeIgniter Forums
How to change favicon icon? - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: How to change favicon icon? (/showthread.php?tid=31397)



How to change favicon icon? - El Forum - 06-17-2010

[eluser]discsurfer[/eluser]
Hi all.

I'm new to the 'game' of CodeIgniter and so far I like it. =)

A small question:

How to change the favicon icon in the code?


/discsurfer


How to change favicon icon? - El Forum - 06-17-2010

[eluser]Clooner[/eluser]
Not so much a CI question... I suggest you google it!

Code:
Hint
You will have to add meta tags to your html!



How to change favicon icon? - El Forum - 06-17-2010

[eluser]siubie[/eluser]
hmmhh

Code:
<link rel="shortcut icon" href="/images/design/favicon.ico" type="image/x-icon" />

change to

Code:
<link rel="shortcut icon" href="<?=$some_variable?>" type="image/x-icon" />



How to change favicon icon? - El Forum - 06-21-2010

[eluser]discsurfer[/eluser]
Thank you very much for the replies...

I manage to change the icon image on the server and it worked just, Big Grin weee

But I cant find the place in the code where I change.


/discsurfer


How to change favicon icon? - El Forum - 06-21-2010

[eluser]Clooner[/eluser]
Actually most browser will check the root of the domain to see if the file favicon.ico exists and will try to load it even if you don't have it defined anywhere in your html!


How to change favicon icon? - El Forum - 06-21-2010

[eluser]discsurfer[/eluser]
Thx again m8

That must be the case in this one, becource I can only see the icon in the root directory.

Nice to know =D

Thread closed!