Size of Site Title
-
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: (visible only to logged in users)
-
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; } -
- The topic ‘Size of Site Title’ is closed to new replies.