- This topic has 1 reply, 2 voices, and was last updated 1 year, 1 month ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- You must be logged in to reply to this topic.
How would I go about changing the header image height? 500px is the default but is far too large for my site theme. Thank you.
The height of the header image can be changed by adding a small snippet of CSS code at ‘Appearance‘ > ‘Customize‘ > ‘Additional CSS‘:
.entry-header.with-image,
.archive-header.with-image {
min-height: 30rem;
}
change the 30rem value for something else. As a guide, 30rem is equal to 480px, but you can use a px value instead if you prefer, for example:
.entry-header.with-image,
.archive-header.with-image {
min-height: 300px;
}