Site logo

Archived topic

Display Posts on Blog Page in a single Container

3 replies · Started by Jiren on August 24, 2019

Viewing posts 1–4 of 4

Hello, I want my Blog Page to have the same look like this sites.

-all posts in a single container and separated by a simple separator

I could not find anything related to this, so far and maybe my post will help others as well.

Hi there,

Give this CSS a shot:

.separate-containers .site-main>* {
    margin-bottom: 0;
}

.inside-article {
    border: 0;
    box-shadow: 0 0 0;
}

.site-main {
    border: 1px solid rgba(232,234,237,1);
    box-shadow: 0 0 10px rgba(232,234,237,.5);
}

.blog .site-main > article,
.archive .site-main > article {
    border-bottom: 1px solid #eee;
}

Let me know :)

Worked like a charm. Thank you very much.

You're welcome :)

This archived topic is closed to new replies.