Home Forums Trusted Change main header size Reply To: Change main header size

#4745
Yazmin
Keymaster

Hello,

You can change the padding above and below the page title and in combination with changing the height of the header area.

Go to Appearance > Customize > Additional CSS and add this CSS code:

.main-header {
    min-height: 300px !important;
}
.header-title {
    padding: 70px 0;
}

Change 70px and 300px to whatever you want to see how this affects the size of the header area.
Please note that the !important text in the first part is needed to override this particular value.

You will need experiment with different values to get the look you want.