- This topic has 2 replies, 2 voices, and was last updated 7 years ago by .
Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Site title and description font size’ is closed to new replies.
Could you please help me add the css code to increase both title and site description font size? Thank you.
Add this to Additional CSS, changing the font-size to suit.
.site-title{
font-size: 28px;
}
#site-description{
font-size: 12px;
}
If you also want to change the font size of the site title in the sticky header when scrolling down the page, this will do it:
#masthead.scrolled .site-title{
font-size: 24px;
}
Thank you