Twenty Twenty is currently the default WordPress theme. It has more than 1 million active installations which probably makes it the most popular WordPress theme.
We use that theme in our plugins demo site. Recently, we found out that the header space is too large and we decided to reduce it’s top and bottom space. Here is how it can be done:
- Login to your Admin Panel
- Navigate to Left Menu -> Appearance -> Customize -> ‘Additional CSS’ section
- Insert the following code there and save changes
.singular .entry-header {
padding:0 0 20px 0;
}
Please Note: we add the above code into customizer Additional CSS section instead of editing it directly in theme style.css, because in this way the custom code will remain on theme upgrade.
Thank you so much for this. That extra space was driving me nuts!
Hello, this works on pages without a featured image. Any idea on the CSS for those pages?
Hi DWY,
I presume you want to reduce the height of the feature image. It can be done by inserting the following CSS code:
.singular .featured-media-inner img {
height: 100px;
}
Thanks,
Tihomir
Tishonator Team
hi its not working
With full site editing, the Additional CSS section is not available anymore. I use the Simple Custom CSS and JS plugin instead.