Site logo

Archived topic

How to remove extra space between Posts? (In Mobile)

3 replies · Started by Naman on October 30, 2022

Viewing posts 1–4 of 4

Hi, I would like to remove extra space that are between Posts - Homepage (In Mobile)

But, not in desktop.

Please check the image with Website URL.

Hi there,

try this CSS:


@media(max-width: 768px) {
    .generate-columns .inside-article {
        padding-bottom: 0;
    }
    .generate-columns {
        margin-bottom: 0;
    }
    .generate-columns :is(footer.entry-meta, .entry-summary) {
        margin-bottom: 0;
        display: none;
    }
}

It works!

Thanks David.

You're welcome

This archived topic is closed to new replies.