Home Forums Azuma Changing header image height Reply To: Changing header image height

#8579
Yazmin
Keymaster

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;
}