Site logo

Archived topic

Hi! My site's header has spacing issue

3 replies · Started by vincenteccl on December 30, 2022

Viewing posts 1–4 of 4

Hi! On desktop, my site's homepage Site Title has a spacing issue.
There's a large blank space that cannot be reduced using customiser.
This only happens on the homepage, which I use elementor to create.
For other pages, there is no such issue.
Please help. Thanks.

Hi there,

can you disable any cache/optimization plugins so we can see where then CSS that is affecting that element is coming from.

Hi, I have cleared the cache and you should be able to see it.
Thanks.

Its Elementor adding this CSS to your site:

.elementor-kit-43 p {
    margin-bottom: 2em;
}

Which is adding 2em of bottom margin to every p tag.

To fix that for the header add this CSS:

.site-branding .main-title {
    margin-bottom: 0;
}
This archived topic is closed to new replies.