Absolution Banner

Darthmaul

Goldbergstein
Joined
Jul 28, 2009
Messages
11,173
Reaction score
4
FP$
6,302
How do i replace that absolution banner at the top with my own? I already overwrite the sit_logo file, but it still ain't changing.
 
Have you done this:
Code:
img_site_logo = site_logo.gif*100*100

Replace dimensions and logo name.
 
If you overwrote it, you may need to clear your browsers cache. Ensure that you called the new logo exactly the same so it did overwrite it.
 
1. Here is what that line of code looks like:
Code:
   <a href="{U_INDEX}"><img src="{T_THEME_PATH}/images/logo.png" width="416" height="112" alt="" /></a>
2. I have already tried everything and it ain't working. Any suggestions.
And i overwrote it perfectly and cleared me cache
 
Try just uploading your image to the imageset, then using ACP to edit Style - Absolution - Imageset. Change the logo file to your new one.

I had to do this with my style -.-
 
Upload site_logo.gif to absolution/themes/images/

To check if you uploaded it in the right place it should show at the following URL - http://forum.guardiangamming.com/phpBB3 ... e_logo.gif

Then once that is done find this:
Code:
   <a href="{U_INDEX}"><img src="{T_THEME_PATH}/images/logo.png" width="416" height="112" alt="" /></a>
and change it to this-
Code:
   <a href="{U_INDEX}"><img src="{T_THEME_PATH}/images/site_logo.gif" width="416" height="112" alt="" /></a>

You may need to alter the image dimensions too.
 
Back
Top Bottom