Archived topic
Reduce margin between excerpt and title in home blog
5 replies · Started by Daniele on June 22, 2016
Hi guys,
I'm trying to reduce the space between title and excerpt in the blog post masonry.
But if I change
.entry-content, .entry-summary, .page-content {
margin: 0.2em 0 0;
}
it reduces the space between posts too.
how can I solve it?
thanks,
Daniele
Try this:
.masonry-post .entry-content,
.masonry-post .entry-summary,
.masonry-post .page-content {
margin: 0.2em 0 0;
}
Hi Tom,
thanks it works. But why it doesn't make disappear the space at the bottom?
See this:
http://www.80s.it/pic/screen.jpg
Thanks again!
Give this a try:
.masonry-post .entry-summary p:last-child {
margin: 0;
}
Thaks Tom it works! :D
You're welcome :)
