Site logo

Archived topic

Spacing between Title Of Post and Excerpt On Archives

3 replies · Started by johnzoro on July 31, 2021

Viewing posts 1–4 of 4

How do I change the spacing between the post title and the excerpt? I don't want as big of a gap as is currently showing

Hi there,

you can adjust the Content Separator Space in Customizer > Layout > Container.

Or you can apply some CSS to specifically target your archives:

body:not(.single) .entry-summary {
    margin-top: 0.75em;
}

Thanks! That CSS really helped. Is there a way to minimize the space below the excerpt too? (but only on archive pages)

Try this:

.blog footer.entry-meta, .archive footer.entry-meta {
    display: none;
}
.post-image-aligned-left .inside-article .featured-image, .post-image-aligned-left .inside-article .post-image {
    margin-bottom: 0;
}
This archived topic is closed to new replies.