In
Code:
includes->templates->YOUR-TEMPLATE->css->stylesheet.css
Open that file in a text editor like notepad, do search for h1
You should find something very much like this:
Code:
h1 {
font-size: 1.5em;
}
What ever your's looks lilke, add something like this
Code:
font-family: 'Comic Sans MS', cursive;
INSIDE the closing } so it looks kinda like this:
Code:
h1 {
font-size : 1.5em;
font-family: 'Comic Sans MS', cursive;
}
Just replace the font in red ('Comic Sans MS', cursive)with what ever font suits you. Save it and upload it to the css folder in your custom template.
Hope that helps,
Tom