Archived topic
Reduce Space between posts
3 replies · Started by Borja on October 31, 2017
Hello Tom,
I'm currently working on an update of my webpage:
And I was wondering if it is possible to reduce the space between posts/each entry in home and categories. So there is not so much white space between each entry.
Also I would like to know if it is possible to reduce the space between the entries and the right sidebar.
Thank you so much for your support!
Hi there,
Try this CSS:
.blog .post,
.archive .post {
margin: 0;
}
.blog.one-container .inside-article,
.archive.one-container .inside-article {
padding: 0;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
As for space between right sidebar element, you've added the 80px bottom margin:
.inside-right-sidebar .widget {
border: 1px solid #dedede;
padding: 15px;
overflow: hidden;
text-align: center;
margin-bottom: 80px
}
Perfect, It have worked.
Thank you so much
No problem!