- This topic has 1 reply, 2 voices, and was last updated 7 years ago by .
Viewing 2 posts - 1 through 2 (of 2 total)
Viewing 2 posts - 1 through 2 (of 2 total)
- The topic ‘change header hight / delete it completly’ is closed to new replies.
Hey,
Thank you for providing this Theme!
I want to create a page with heavy content load and would like thin out the header to half if not remove it completely.
I clicked my way through “Customize” o the wp panel but could not find a corresponding solution
Ideally the user does not need to scroll one more time to view the full content.
Ideas?
kind regards
In the customizer, go to Additional CSS and add the following CSS code
(change 000 for the actual page ID of the page you wish to apply this to, e.g. page-id-26)
.page-id-000 .header-title {
padding: 0;
}
This will reduce the space above and below the page title down to zero.