Topic: How to hide Title from the header

Hi guys, I searched the whole forum for suitable answer but it didn't solved my problem. Here is my forum :

http://www.klsu.fm/forum/index.php

I edited main.tpl. Nothing happened. I edited mystyle.css. Nothing happened. I followed all the instructions but everytime it failed to give me result. So, I backtracked to original codes to start from again. Please help this newb out.

Thanks smile

2 (edited by dlngle12 2005-10-18 12:09)

Re: How to hide Title from the header

I think I know your problem put the "<pun_title>" above the "<pun_head>" in main.tpl that should fix the problem.

Free games/arcade at dlngle.com

Re: How to hide Title from the header

Hi smile

If you do that, the banner goes off and only shows the tittle. sad

4 (edited by dlngle12 2005-10-18 12:19)

Re: How to hide Title from the header

Go through all the scipts you edited and search for "klsu" seeing as though that is whats being displayed. start by looking in the place where the title name is sposed to be ?

Free games/arcade at dlngle.com

Re: How to hide Title from the header

Just remove <pun_title> from your template.

"Programming is like sex: one mistake and you have to support it for the rest of your life."

Re: How to hide Title from the header

If you do that, the banner goes away sad

Oh BTW, for more clearity, this is the code I used in stylename_cs.css to get the banner working.




/* header logo */
.pun H1
{
/* your logo and position */
background-image: url(../../img/logo1.png);
background-repeat: no-repeat;
background-position: left; /* you set your logo position here */
display: block;
height: 70px; /* logo height in here add width: size px if u need*/
}

/*header title*/
.pun H1 span
{
/* your font style */
color: #0066B9;
font-size: 20px; /* title size */
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
text-transform: none ; /* transform text: uppercase, capitalise */
text-decoration: underline; /* decoration: none, overline */

/* position for your text (board title) with the logo */
position: absolute;
top: 40px;
left: 90px;
}

Re: How to hide Title from the header

another way is just to put your code for the baner into the actual main.tpl its a bit messy but it should to the trik hmm

Free games/arcade at dlngle.com

Re: How to hide Title from the header

Yeah, get rid of <pun_title>, and replace it with something like <a href="/index.php"><img src="/banner.jpg"></a>... that should do it, and make it so clicking on the banner returns to the forum index (something that I've found to be helpful).

Re: How to hide Title from the header

Quick question.

Curious mate....
Whats with the '<h1><span>.</span></h1>' in the top of your code. I just cant make any sense of using it...