For the previous version of my DW Focus theme, I enlarged the font of the page site with the
.page .site-content>.hentry .entry-content {
font-size: 18px;
line-height: 2.08em !important;
}
code, but it no longer works. For my pages, the font is very small now. How do I enlarge the font of the normal pages (not posts, also not homepage) now? Example page: http://www.whatsonweibo.com/contact
Cheers
1 Answers
You can add the following code to your style.css file:
.page .page-content {
font-size: 31px;
line-height: 2.08em !important;
}
Hope this helps!
Great, that worked!
Please login or Register to submit your answer