PDA

View Full Version : Change site logo


Hal0
27 Dec 07, 13:19
I have downloaded the Acidtech theme, and I want to change the site_logo.gif to a *.jpg file instead.
I have looked at the css but can't find were to change it, any tips?

Thx

Mortality
27 Dec 07, 13:53
why not just convert your image to a .gif .. or just rename it :) to .gif

Hal0
27 Dec 07, 13:56
b/c gif only suports 256 colors, and that wont do when I'm using a high detailed logo.

Mortality
27 Dec 07, 14:15
geee.

well the problem is the site_logo is a function in /include/functions.php search site_logo_img

as you can see the image its set to is $user->img('site_logo')) I dont see how you would set it to .jpg

so you could either wait for php genius to respond or...

1) open your overall_header.html ( in the templates folder)

2) find site_logo_img

3) change


<tr>
<td id="logorow" align="center"><div id="logo-left"><div id="logo-right">
<a href="{U_INDEX}">{SITE_LOGO_IMG}</a>
</div></div></td>
</tr>


to


<tr>
<td id="logorow" align="center"><div id="logo-left"><div id="logo-right">
<div id="logo-site"><a href="{U_INDEX}"></a></div>
</div></div></td>
</tr>



4) open theme/stylesheet.css

5) find logo

6)
add
#logo-site {
background: url(images/logo_site.jpg) top centre no-repeat;
}

CyberAlien
27 Dec 07, 18:17
Upload new image in jpg format to your website in imageset directory, in phpBB control panel edit imageset to change logo filename.

Hal0
27 Dec 07, 18:23
Upload new image in jpg format to your website in imageset directory, in phpBB control panel edit imageset to change logo filename.

nice, thanks for the help!