Archived topic
Extra Gap coming after post titles
3 replies · Started by Amit on August 20, 2020
I can see some extra gap coming after post titles in desktop whereas if seen in mobile, that gap is pretty less from bottom. I use WP-show posts for this view. Please help me in aligning that gap.
But few days back, this was not a problem and I don't even remember if had made any change to something related to that.
Hi there,
you can reduce the gap on all WPSP posts with this CSS:
.wp-show-posts-columns .wp-show-posts-inner {
margin-bottom: 1.5em !important;
}
If you want to apply that only on desktop then do this instead:
@media(min-width: 769px) {
.wp-show-posts-columns .wp-show-posts-inner {
margin-bottom: 1.5em !important;
}
}
That worked!
Glad to hear that