Try this custom CSS:
jumbotron {
padding: 40px 0 30px;
}
.jumbotron h1.block-title {
text-align: left;
}
.jumbotron h1.block-title::after {
content: none;
}
-
This reply was modified 9 years, 5 months ago by
lyrathemes.
Thank you, the title is now moved to the left. But padding does not work.
Try
.jumbotron {
padding: 40px 0 30px !important;
}
or
.jumbotron.image-banner.banner-custom-header,
.jumbotron.image-banner.banner-custom-header{
padding: 40px 0 30px !important;
}
-
This reply was modified 9 years, 5 months ago by
lyrathemes.
Another option is fine. I’ve tried the following:
.jumbotron.image-banner.banner-custom-header,
.jumbotron.image-banner.banner-custom-header{
padding: 10px 0 10px !important;
}
.jumbotron h1.block-title {
text-align: left;
font-size: 26px;
}
.jumbotron h1.block-title::after {
content: none;
}
So it now looks like this

I’m still trying to reduce the lower part. But it looks depends on the padding of h1 title.
I did this with margin-bottom.
.jumbotron h1.block-title {
text-align: left;
font-size: 32px;
margin-bottom: 0px;
}
Unfortunately, I can not center a title by height 🙁
Done! This works perfectly:
.jumbotron.image-banner.banner-custom-header,
.jumbotron.image-banner.banner-custom-header{
padding: 18px 0 10px !important;
}
.jumbotron h1.block-title {
text-align: left;
font-size: 32px;
margin-bottom: 0px;
}
.jumbotron h1.block-title::after {
content: none;
}