Topic: Header & banner

I want to add a Header(.gif-picture) at the top of my forum and a banner(html-script) in the bottom of the forum.

How to do that?

2 (edited by Ludo 2005-07-08 14:49)

Re: Header & banner

for the header it's simple.

Have a look at main.tpl

You can also see this example for the footer http://punbb.org/forums/viewtopic.php?id=6536

Ludo,

Re: Header & banner

Ludo wrote:

for the header it's simple.

Have a look at main.tpl

You can also see this example for the footer http://punbb.org/forums/viewtopic.php?id=6536

Ludo,

I don't understand how to fix the header in the main.tpl.. Could you please explain more exactly?

4 (edited by François 2005-07-11 10:56)

Re: Header & banner

You can make like this

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html dir="<pun_content_direction>">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=<pun_char_encoding>" />
<pun_meta>
<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">
<!-- this is the banner --> <p><a href="index.php" title="sitename"><img src="img/mybanner.png" alt="" /></a></p>
        <pun_title>
        <pun_desc>
        </div>
        <pun_navlinks>
        <pun_status>
    </div>
</div>
<pun_announcement>
<pun_main>
<pun_footer>
</div>
</div>
</body>
</html>

Re: Header & banner

If you mean a header as a logo, here is how to add a logo via css: http://www.punres.org/doku.php?id=dev:s … go_via_css