@ erinabellydancer I’m guessing you’re using the default twenty ten theme?
If so:
For multiple post pages, change font color
.entry-title a:link,
.entry-title a:visited {
color: #000;
text-decoration: none;
}
.entry-title a:active,
.entry-title a:hover {
color: #ff4b33;
}
For single post poges and multiple post pages – change font- family
#wp-calendar,
.comment-meta,
.comment-body tr th,
.comment-body thead th,
.entry-content label,
.entry-content tr th,
.entry-content thead th,
.entry-meta,
.entry-title,
.entry-utility,
#respond label,
.navigation,
.page-title,
.pingback p,
.reply,
.widget-title,
.wp-caption-text,
input[type=submit] {
font-family: "Helvetica Neue", Arial, Helvetica, "Nimbus Sans L", sans-serif;
}
For the single posts change font color
#content h1,
#content h2,
#content h3,
#content h4,
#content h5,
#content h6 {
color: #000;
line-height: 1.5em;
margin: 0 0 20px 0;
}
To change font sizes on both single and multiple post pages, add something like this at the bottom of the style sheet. You could add font families in there as well and it’ll over ride any previous settings
h1 {font-size:16px;line-height:18px;}
h2 (font-size:14px; line-height:16px;}