Resize (i.e. decrease) header height

Posted in: Newspaper
Post count: 2

Hello, I am using style 11 of the Newspaper theme. However, the height of the logo area (where the site title is displayed in text) is too big (too much white space), and I would like to make it smaller, such that all content from below moves up accordingly. Please help me with some advice on what kind of custom CSS I might use to achieve this.
In CSS terms, I see that classes td-header-sp-logo or td-banner-wrap-full are responsible for styling this area. I have tried to adjust the height with custom CSS, but with no effect. Please advise.

Post count: 2

Or, alternatively, how can I remove completely the header section?

Post count: 187

Both great questions. Following 🙂

Post count: 22421

Hello,
The size depends on your logo size. If I am to provide a code I will need a link to your site so I can test it on your logo.
This code works on the default logo:

.td-header-style-11 .td-logo-wrap-full .td-logo{
line-height: 109px;
}
.td-header-style-11 .td-logo-wrap-full{
min-height: 110px;
}

If you want to remove the header section completely, you can use this css code:
.td-header-style-11{
display:none;
}

Thank you!

Viewing 4 posts - 1 through 4 (of 4 total)
The forum ‘Newspaper’ is closed to new topics and replies.