Archived topic
Decreasing the vertical space between posts in column on mobile
4 replies · Started by Pete on August 7, 2019
I'm having difficulty reducing the space between each post. See link.
Thanks.
This seems to work, but not sure if it's the best way to go?
.home.blog .generate-columns.tablet-grid-50.mobile-grid-100.grid-parent.grid-33 .inside-article {max-height:90px;}
Hi there,
setting a max-height may cause issues if the content needs to expand above that. Instead lets remove/reduce some of the margins and padding in the article:
.generate-columns-activated.one-container .inside-article{
padding-bottom: 5px;
}
.generate-columns-activated .entry-summary {
margin-top: 0;
}
Great that's a much better fix. Thanks.
Glad to be of help.