June 1, 2022 at 12:01 pm
#68917
Hi Oliver,
Please navigate to Dashboard > Appearance > Customize > Additional CSS section add the following snippet:
@media screen and (max-width: 880px) {
.entry-header {
height: 100px !important;
}
}
@media screen and (max-width: 690px) {
.entry-header {
height: 80px !important;
}
}
@media screen and (max-width: 550px) {
.entry-header {
height: 50px !important;
}
}
@media screen and (max-width: 340px) {
.entry-header {
height: 30px !important;
}
}
Kind Regards