1 (edited by marc100 2008-05-20 06:17)

Topic: Can you put up a totally new header?

I did read this http://wiki.punres.org/Add_a_logo_to_the_header_via_css
and all it says is how to add a logo.

Well I can add a logo, but the name of my site appears over the logo which looks confusing and unreadable.
Also I want to add an entire header, that stretches across 1n00% of the page, and have my own site menu under it.

I dont know how to do this.
In Vbulletin I just put my header in under the BODY tag, but When I open up the "header" file in PunBB its all code and I cant put html in under the body tag.

So is it possible to up a whole new header? thanks smile

2

Re: Can you put up a totally new header?

Hi,

Look in /include/template/main.tpl:

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

Re: Can you put up a totally new header?

Perfect, exactly what I was looking for, thank you!