Question about blog name and blog description.

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
Ripper^^
Regular
Posts: 50
Joined: Mon Aug 15, 2005 7:49 am
Location: Gainesville, Florida, USA
Contact:

Question about blog name and blog description.

Post 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]
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Question about blog name and blog description.

Post 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
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Ripper^^
Regular
Posts: 50
Joined: Mon Aug 15, 2005 7:49 am
Location: Gainesville, Florida, USA
Contact:

many thanks!!

Post by Ripper^^ »

Again Garvin many many thanks. Your help is fantastic, I don't know how you find the time.

Ripper^^
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: many thanks!!

Post by garvinhicking »

You're welcome! Sometimes I do wonder as well how I find the time :-D

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply