How do I change the size of the site title using CSS? I want mine to be bigger.
The blog I need help with is letthewordsescapeblog.wordpress.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
How do I change the size of the site title using CSS? I want mine to be bigger.
The blog I need help with is letthewordsescapeblog.wordpress.com.
You theme defines the header font like this:
#header h1 {<br />
font-size: 2.45em;<br />
line-height: 1.1em;<br />
}
In your custom CSS, you can copy-paste that, and increase the font-size, for instance to 6em.
While you're at it, you may also want to reduce the empty space under your title, with something like this:
#header {
padding-bottom: 25px;
}
Perfect! Thanks SO much!
This topic has been closed to new replies.