How to Change the Header Tags Font Size in WordPress
- 1). Log in to WordPress and go to "Appearance." Click the "Editor" link to load the "Edit Themes" screen. Scroll down to the bottom and click the link to open "style.css" in the editor.
- 2). Locate the references to your header tags in the "style.css" code. Styles referencing headers look like this:
h1 {
font-size: 24px;
}
#somediv h2 {
font-size: 18px;
}
As you search through your code for these styles, you may see multiple instances of any "h1" through "h6" tag. Edit each instance as needed. - 3). Change the value of the "font-size" property. Use "px" for pixels, "em" for ems or "%" for percentages. You can also specify font sizes by name, ranging from "xx-small" to "xx-large." Update "style.css" by clicking the blue button after you finish making your changes.
Source...