Topic: [ASK] Adding Image To Header PunBB 1.2.x

How i can change the header?

Thx...

Re: [ASK] Adding Image To Header PunBB 1.2.x

bad support... very bad support...  sad

Re: [ASK] Adding Image To Header PunBB 1.2.x

Check "include/template/main.tpl"

Re: [ASK] Adding Image To Header PunBB 1.2.x

I have to wait for weeks just to hear the answer from my simple question. PunBB quite difficult in use, far more difficult than other BB. so please improve your support or Punbb would be the loss of users...  neutral

Free does not mean not care about the user. so why do you make of this support forum if you ignore the simple question from newbie who really wants to learn PunBB like me...  neutral

Sorry for my complain... thx...

@Kierownik
Thx bro... u are the best...  smile

Re: [ASK] Adding Image To Header PunBB 1.2.x

Where do you want to add it? At the board title, description, in the navigate menu?

Re: [ASK] Adding Image To Header PunBB 1.2.x

in board title and board description. i want remove board title and description, so i can put the image...

this's the code of main.tpl

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_head>
</head>
<body>

<div id="punwrap">
<div id="pun<pun_page>" class="pun">

<div id="brdheader" class="block">
    <div class="box">
        <div id="brdtitle" class="inbox">
            <pun_title>
            <pun_desc>
        </div>
        <pun_navlinks>
        <pun_status>
    </div>
</div>

<pun_announcement>

<pun_main>

<pun_footer>

</div>
</div>

</body>
</html>

so, where i should put the code for header image?

thanks... thanks a lot for answer my questions...  smile

Re: [ASK] Adding Image To Header PunBB 1.2.x

To change the board title, edit the 154 line of header.php. It will look like:

$tpl_main = str_replace('<pun_title>', '<img src="http://img.informer.com/images/logo_si.png">', $tpl_main);

The board description can be changed in a similar manner.