Topic: Removing Board Title

I have an image set for my board description so I want to remove the board Title option - eg on this board it says "PunBB.org Forums"

How would I do this?

Re: Removing Board Title

remove <pun_title> from main.tpl

3

Re: Removing Board Title

Goto your root folder, find 'Include' then goto 'Template'. There will be a few .tpl files.
Edit the 'main.tpl' file.

You will need to remove the following:

<pun_title>
<pun_desc>

Re: Removing Board Title

Cheers connorhd

Re: Removing Board Title

you can do all that in css, like i did, so you can have more than one style and just one having an img header or two having a different header

add:

#brdtitle {height:54px;background: url(header.png) no-repeat}
#brdtitle P {display:none}
#brdtitle h1 {display:none}