Hi there,
I’m basically trying to get the effect of what the ‘row’ cards do, but without the alternating image alignment and a bit more space in between each post. Is there a way to do that?
If that’s the case, you can use Row and then add this CSS:
@media (min-width: 560px){
#wpsp-1234 .wpsp-row article:nth-child(even) .wp-show-posts-inner {
flex-direction: row !important;
}
}
Change 1234 in #wpsp-1234
to the WPSP list id you want it applied to.
The purpose of the CSS is to prevent the alternating image alignment. As for the space between posts, try setting the column gutter to a higher value.