Thanks for the 5 stars.
It will be a little bit difficult to do this and you may have other adjustments to do that.
First you have to add some javascript to make elements to the same height. It’s not possible to do that in css:
jQuery(document).ready(function($) {
var heights = $(".wplp_listposts li li .insideframe").map(function() {
return $(this).height();
}).get(),
maxHeight = Math.max.apply(null, heights);
console.log(maxHeight);
$(".wplp_listposts li li .insideframe").height(maxHeight);
});
Then change your css
.insideframe {
padding-top: 50px;
}
to
.insideframe {
margin-top: 50px;
}
And add this css
.insideframe .insideframe {
background-color: #FFF;
}
It should do the trick