Site logo

Archived topic

Spacing Between Blog Items on Front Page

5 replies · Started by sourceofthespring on October 27, 2021

Viewing posts 1–6 of 6

Hi there,

I migrated my site's layout to Flexbox from Floats and now I've noticed the spacing between blog posts on the homepage isn't consistent.

Hi there,

you have this CSS which is removing the themes spacing between posts:

@media (min-width: 1025px) {
    .hentry {
        margin-bottom: 0;
    }
}

And the spaces that are appearing are coming from advert containers that are being inserted between posts.

What was the purpose of the above CSS?

That's a good question! I don't know off the top of my head -- and I can't seem to find that snipped in Additional CSS. :/

Aah i copied it from dev tools -so ignore the @media - look for it here:

.facebook-post
    {
        margin: auto !important;
    }

    .hentry {
        margin-bottom: 0;
    }

    .wp-block-image .aligncenter {
        margin-left: auto;
        margin-right: auto;
    }

That worked, thanks so much!

Glad to hear that!

This archived topic is closed to new replies.