Changing the colour of Blog title text

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
rhacer
Regular
Posts: 17
Joined: Sun Sep 25, 2005 10:23 am

Changing the colour of Blog title text

Post by rhacer »

I realize that this is an incredible newbie question.

I just installed 0.8.4 over the top of my 0.7.1 installation. I had created a very slightly modified style in 0.7.1 to use a bg image, and specify font families to match the rest of my site.

That style broke in 0.8.4. I created a new style based on "blue" and successfully put my bg image in place, but the colours of the title text are ALL wrong, and I can't for the life of me figure out how to just make it white!

any help would be greatly appreciated.
Col. Kurtz
Regular
Posts: 450
Joined: Thu May 26, 2005 10:43 am
Location: Bonn, Germany
Contact:

Post by Col. Kurtz »

I hope I understood you right.

You can either edit the index.tpl in the default theme the code is

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> 
you could change the colors there.

Or look for

Code: Select all

#serendipity_banner
in the style.css
Marc
rhacer
Regular
Posts: 17
Joined: Sun Sep 25, 2005 10:23 am

Post by rhacer »

Thank you so much. I'd modified serendipity_banner, but on closer inspection I saw I needed to modify serendipity_banner h1 and h2 as well.

This did the trick.

I appreciate your help.
Post Reply