Changing font and size of page title

Permalink
Can anyone tell me how to change the font type and size in the default choclate template

 
invision replied on at Permalink Reply
invision
To change the default font for the entire theme, you must open and edit a cascading style sheet (CSS) file.

Open typography.css in your favorite text editor (notepad, textedit etc) and edit the second line below:

body { 
/* customize_body */ font: normal normal 13px Arial; /* customize_body */
/* customize_body */ color: #777777; /* customize_body */
line-height:18px;
}


the CSS "font" tag on that line is shortcut CSS for a lot of different font settings:
font: = the actual tag name. Don't edit this.
normal = the font's style (i.e. normal, italic)
normal = the 2nd 'normal' is the font's weight (normal, bold)
13px = the size of the text
Arial = the basic font for the entire site

What exactly are you trying to change the font to?

Sherm Stevens
http://www.invision-studios.com
richk replied on at Permalink Reply
I'm trying for more of a script type font
jordanlev replied on at Permalink Reply
jordanlev
An easier way to do this is to go to Dashboard -> Pages and Themes, click the "Customize" button next to the Dark Chocolate theme, then click the icon next to "Body" and set the font there. (After you set the font, click the little "ok" button, then "Save").