Page 1 of 1
How do I make changes to this ceejay01 style?
Posted: Mon Apr 23, 2007 5:33 pm
by sjbmaine
I would like to change the title font style at the top of my static page entries. I've been modifying ceejay01's template for my project. The source code shows this as <h4 class="serendipity_title">, but I'm at a loss where to change this in the style sheet. Can anyone help?
Posted: Mon Apr 23, 2007 5:38 pm
by d_cee
Hi Susan
I don't have a copy of this template installed anywhere just now so if you could post your url so I can take a look I'm sure there's a very quick answer just waiting for you
cheers
Dave
Posted: Mon Apr 23, 2007 6:14 pm
by sjbmaine
Posted: Mon Apr 23, 2007 7:32 pm
by d_cee
Hi Susan
in 'General Styles' near the beginning of your style.css file you've got
Code: Select all
h3, h4 {font-size: 13pt; font-weight:bold; margin :10px 0; padding:0; }
you can change this to whatever you want. However this will change all h3 and h4 tags on your site.
If you only want the title to change you should add
Code: Select all
h4.serendipity_title {
font-family: whatever_you_want;
}
to the style.css file
HTH
Dave
Posted: Mon Apr 23, 2007 8:14 pm
by sjbmaine
Thanks!