How to add favicon to phpbb3?

Mokeli

Paragon
Joined
Jul 28, 2008
Messages
1,433
Reaction score
0
FP$
1,560
This is my site:http://www.webmasters-network.com/


I would like to use different favicon for my forum.

How i can add favicon to phpBB3 ? Thanks 🙂
 
You can add it to your style by going to styles/your style/template/overall_header.html and add it in a line after the <title> tag on top.
 
victory1 said:
You can add it to your style by going to styles/your style/template/overall_header.html and add it in a line after the <title> tag on top.
For the coding, you can generally have it as simple as this:
Code:
<link rel="shortcut icon" href="YOURLINK/favicon.ico" />
 
You can just upload one to the root of your forum, and browsers show them automatically.
 
DavidL said:
victory1 said:
You can add it to your style by going to styles/your style/template/overall_header.html and add it in a line after the <title> tag on top.
For the coding, you can generally have it as simple as this:
Code:
<link rel="shortcut icon" href="YOURLINK/favicon.ico" />
Thanks its working now 🙂
 
Back
Top Bottom