There are two ways to do this without changing the template. Both of these explanations assume that you are using subSilver, the methods would be similar for other templates.
Method 1:
First, open \templates\subSilver\overall_header.tpl and find this code:
- Code: Select all
<table width="100%" cellspacing="0" cellpadding="10" border="0" align="center"> <tr> <td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
The logo is specified here:
- Code: Select all
<img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" />
You can upload your new logo to \templates\subSilver\images,and edit the above line to specifiy the name of your logo file. So it would look something like:
- Code: Select all
<img src="templates/subSilver/images/my_logo.gif" border="0" alt="{L_INDEX}" vspace="1" />
You can specify other supported image formats if your logo is not a .gif.
Method 2:
1. Name your logo "logo_phpBB.gif".
2. Upload it to \templates\subSilver\images\ replacing the existing logo.
Note: This method will only work with .gif files. You CANNOT rename a .jpg as a .gif and use it.
John McKernan (JohnMcK)