- This topic has 4 replies, 2 voices, and was last updated 6 years, 4 months ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- The topic ‘Change the gap space on top’ is closed to new replies.
hi,
how can i change this gap on the first page?
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;
}
Hi,
I used only the
.header-title {
display:none;
}
But, this isen’t working. The height area keep the same.
I didn’t notice before some more custom CSS that you have also.
Can you try this please:
.main-header {
min-height: 170px !important;
padding-top: 0 !important;
}
Hi,
Now it`s working! Thanks a lot! 😉