For this card I will never use the excerpt so I want to remove the excerpt so the title can be aligned at the center or bottom of the card (depends on the final need).
We can position absolute the title so it is forced to the center of the card even when there are social icons and entry meta.
#wpsp-15055 .wpsp-content-wrap {
position: relative;
}
#wpsp-15055 header.wp-show-posts-entry-header {
position: absolute;
top: 50%;
transform: translate(0, -50%);
padding: 0 40px;
}
Change the #wpsp-xxxxx to your WPSP list’s ID.