The fullwidth header (not full screen), slider and post title all have a different height. That doesn’t look nice if you combine on different pages of a website. This CSS makes them all the same height.
/* -- Fullwidth headers and post title same height as slider -- */
@media only screen and (min-width: 981px) {
.et_pb_fullwidth_header {
padding: 8.3% 0%!important;
}
.et_pb_post_title_0.et_pb_featured_bg {
padding: 12.5% 0% !important;
}
}
/* -- This is to change the slider height -- */
.et_pb_slide_description {
padding: 10% 0!important;
}Code language: CSS (css)