By Satyro Oliveira on Thursday, 13 March 2014
Posted in Technical Issues
Replies 3
Likes 0
Views 1.2K
Votes 0
Hi,

I'm trying to figure out how to change the title and content fonts and also the line height in the Default Theme. Can you tell me which CSS (file location) should I change and which styles should be changed?

Much appreciated,
Satyro
These are the css selectors that you can use but really, you can just use Firebug with Firefox to inspect these elements


/** Change the blog post title style **/
.blog-head h1 {
color: #000;
font-family: verdana;
}

/** Change the content fonts **/
.blog-text p {
font-family: verdana;
}

/** Change the line height of contents **/
.blog-text p {
line-height: 100%;
}
·
Thursday, 13 March 2014 22:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks, Mark!
I will try it!
·
Friday, 21 March 2014 01:13
·
0 Likes
·
0 Votes
·
0 Comments
·
No problem
·
Friday, 21 March 2014 01:48
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post