pseud0 Moderator
Joined: 18 Oct 2005 Posts: 8
|
Posted: Sat Dec 24, 2005 11:55 am Post subject: |
|
|
Hi there,
You'll need to edit CSS file (template/TemplateName/style.css). Just open it and change the paramenters for H2 style:
| Code: | | h1,h2 {font-weight: bold; font-size: 20px; font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #414141;} |
But remember, this will change the H1 style too! H1 style stands for topic titles. Anyway you can separate those two styles. For example if you want to keep H1 as is just leave this code in CSS file:
| Code: |
h1 {font-weight: bold; font-size: 20px; font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #414141;} |
and add code for H2 style where you can change site description at the top!
| Code: | | h2 {font-weight: bold; font-size: 20px; font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif; text-decoration: none; line-height : 120%; color : #414141;} |
I hope this will help you!
Pseud0 |
|