1

Topic: logo.

if it isn't the right forum so move this topic... wink

i need to somebody explane me where can i put logo?
i want the logo will be where the forum name and description, but just in the other side.
if the forum name and description is in the left side, i want the logo will be in the right side.

Thanks.

Re: logo.

Open the file include/template/main.tpl and look for <span class="puntitle"><pun_title></span><br>, on line 13.
Before that, you add <img src="path/img.name" align="right">.

So the TD-tag will look like:

<td class="punhead">
    <img src="path/img.name" align="right">
    <span class="puntitle"><pun_title></span><br>
    <pun_desc>
</td>

That ought to put an image in your forum head..

3

Re: logo.

Thanks a lot!
it works! tongue
i have another question...
what is the variable for base url?
something like:

<base_url>

Thanks again. big_smile

4 (edited by ConnyT 2004-04-23 10:23)

Re: logo.

It is stored in $pun_config['o_base_url']
(it is stored in another variable in older versions of punBB)

5

Re: logo.

what is the variable on 1.0? tongue

Re: logo.

In 1.0.1 it is stored in $options['base_url']

7

Re: logo.

thanks! big_smile