ps – my site is http://www.HockeyOrDie.com if you want to have a look 🙂
Go to css and look for this rule:
.post-title {
font-size: 2.5em;
font-weight: 700;
line-height: 120%;
margin-bottom: 15px;
font-family: ‘Lato’, sans-serif;
-ms-word-break: break-all;
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;
}
Changing the value in “font-size: 2.5em;” should work.
Thank you Li! That worked out great!
Any idea where I would change the font size for the main content of the posts?
I tried changing the font size in here but it didn’t seem to cane anything.
.post-content a.more-link {
display: inline-block;
background: #262626;
padding: 10px 18px;
color: #FFF;
font-size: 0.85em;
border-radius: 4px;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
}
Hi HockeyOrDie,
In order to change the font size of the post content, find line 793 in style.css and change it to the following:
.post-content { font-size: 1em; }
Increase and/or decrease the value until you’re happy with the font size.