Page Header Size
- The topic ‘Page Header Size’ is closed to new replies.
Need help? Check out our Support site, then
Is it possible to make individual page headers smaller/shorter?
The blog I need help with is: (visible only to logged in users)
You can do this using Custom CSS. I’ve provided a short snippet below to help get you started:
@media screen and (min-width: 1025px) {
.mid-height-header .site-header,
.admin-bar.mid-height-header .site-header {
min-height: 300px;
}
}
@media (min-width: 768px) {
.intro-content {
padding-bottom: 4em;
padding-top: 4em;
}
}
Fantastic! Thanks for the help!
It works!