- This topic has 1 reply, 2 voices, and was last updated 5 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
Home › Community Forums › Aspire Theme Support › How to Increase Font Size on all Posts & Pages
Hi Wes! Sorry for the many questions. How do I increase the font size site-wide on all posts and pages? Thanks!
No problem ๐ You can change the default size around line 155 near the top of your CSS –
/* Chrome fix */
body > div {
font-size: 20px;
font-size: 2.0rem;
}
body {
background-color: #fff;
color: #333;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
font-size: 2.0rem;
font-weight: 300;
line-height: 1.625;
margin: 0;
}
That will only affect the default content. Things like titles/headings have their own font sizes and styling separately in the CSS.