- This topic has 1 reply, 2 voices, and was last updated 4 years, 11 months ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘Changing header image height’ is closed to new replies.
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;
}