How to Change the Title Height in a WP Theme
- 1). Log in to your WordPress account.
- 2). Select "Appearance" and "Editor" from the left pane.
- 3). Select "style.css" from the "Styles" section in the right pane to modify its code.
- 4). Scroll to the ID selector that manages the title's style in your WP theme, such as "#site-title" or "#logo."
- 5). Change the "line-height" setting to the one you'd like to use, such as:
#site-title {
line-height: 16px;
}