Home Forums Trusted Change the gap space on top Reply To: Change the gap space on top

#5322
Andy
Keymaster

Hi,

I can see on your site that you have added custom CSS with negative margin to hide the page title like this:

.header-title {
    padding: 20px 0 20px;
    margin-top: -50%;
}

So that the height of the header area is calculated correctly, I would suggest that you use this custom CSS instead:

.header-title {
    display: none;
}