Where's the site_logo file coded ?

Raptor

Paragon
Joined
Feb 3, 2010
Messages
1,314
Reaction score
0
FP$
6
In my forum , I have the site logo that's a .png file . And I want it to be animated or something like that . So , I was wondering where the file's name is included , so that I can change it to .gif or any other format . I searched for it in the .css files but didn't find it . Do you guys know where it's mentioned ?

And one more thing , can I , in some way change the size of the site logo , its too small . Do you know which .css file or anything I need to modify to make that change ?
 
Go to the style's overall_header.html
Find:
Code:
<div id="wrap">
<div id="header">
<div id="header-left">

Edit this code:
Code:
<a href="{U_INDEX}"><img src="{T_THEME_PATH}/images/cpnthyct.png" width="416" height="112" alt="" border="0" /></a>
 
Go to: phpBBFiles/Styles/YourStyle/Theme/Images/Site_Logo.

If you cant find it there then Go to: phpBBFiles/Styles/YourStyle/Theme/Imageset/Site_Logo.

I'm not on my computer right now, so i dont know any other way to show you on where it might be, but theres an 80% chance that the Site_Logo file will be in one of the two places i showed you.

Hope this helped 🙂
 
@Dark Takua : I didn't find the "img src=" thing . Its not there . Its written as follows :

Code:
<a href="{U_INDEX}" title="{L_INDEX}" id="logo">{SITE_LOGO_IMG}</a>
 
I searched in all the .css files , but didn't find any . The name of the logo file is "site_logo.png".
 
Ya , I did that long ago . Didn't find anything , that's why I am posting my problem here .
 
You're obviously looking in the wrong place, because that file has to be listed in the CSS file with the width etc.

Send us your CSS file.
 
Try this (might work depending on your style):

Upload the image you want to use as the banner to styles/stylename/imageset

In the ACP go styles ----> imageset ---> Click edit by the style you want to edit the logo on ---> At the top it should show Main logo beside the Select image: text. Under image near the bottom there will be an pull down box and pick the image you just uploaded. You can set dimensions if you want. That may work or may not.
 
Fowler said:
Try this (might work depending on your style):

Upload the image you want to use as the banner to styles/stylename/imageset

In the ACP go styles ----> imageset ---> Click edit by the style you want to edit the logo on ---> At the top it should show Main logo beside the Select image: text. Under image near the bottom there will be an pull down box and pick the image you just uploaded. You can set dimensions if you want. That may work or may not.

Oh , thanks . I will try it out .
 
Hi,

Go in to your image-set folder and find "imageset.cfg" then you are looking for...

Code:
# Images
img_site_logo = site_logo.gif*52*139
img_poll_left =
img_poll_center =
img_poll_right =
img_icon_friend =
img_icon_foe =

Cheers!
 
Ya , its exactly that file where the site_logo is coded . Found it from the skin forum anyways .
 
Back
Top Bottom