Page 1 of 1

Question about blog name and blog description.

Posted: Fri Aug 19, 2005 12:39 am
by Ripper^^
When you open up my site the header looks like this:

Image

when moving to various other parts of the site it changes, like this for example:

Image

My question is how do make the original blog name and description static throughout the whole of the site, so that no matter where you are the header always looks like the first image?

Thanks in advance,
Ripper^^[/url]

Re: Question about blog name and blog description.

Posted: Fri Aug 19, 2005 1:14 pm
by garvinhicking
You can do that easily by editing your templates index.tpl file.

Change this code:

Code: Select all

<div id="serendipity_banner">
    <h1><a class="homelink1" href="{$serendipityBaseURL}">{$head_title|@default:$blogTitle}</a></h1>
    <h2><a class="homelink2" href="{$serendipityBaseURL}">{$head_subtitle|@default:$blogDescription}</a></h2>
</div>
to this:

Code: Select all

<div id="serendipity_banner">
    <h1><a class="homelink1" href="{$serendipityBaseURL}">{$blogTitle}</a></h1>
    <h2><a class="homelink2" href="{$serendipityBaseURL}">{$blogDescription}</a></h2>
</div>
Have fun,
Garvin

many thanks!!

Posted: Sun Aug 21, 2005 9:16 pm
by Ripper^^
Again Garvin many many thanks. Your help is fantastic, I don't know how you find the time.

Ripper^^

Re: many thanks!!

Posted: Mon Aug 22, 2005 2:00 pm
by garvinhicking
You're welcome! Sometimes I do wonder as well how I find the time :-D

Regards,
Garvin