How do I make changes to this ceejay01 style?
How do I make changes to this ceejay01 style?
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?
Susan in Maine
Hi Susan
in 'General Styles' near the beginning of your style.css file you've got 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 to the style.css file
HTH
Dave
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; }If you only want the title to change you should add
Code: Select all
h4.serendipity_title {
font-family: whatever_you_want;
}HTH
Dave