Hi there,
You can do this with a bit of CSS.
Here’s something you can work with.
.wp-show-posts-inner {
position: relative;
overflow: visible !important;
}
.wp-show-posts-inner .wpsp-content-wrap {
position: absolute !important;
top: 50%;
left: 0;
transform: translate(-10%, -50%);
z-index: 10;
margin: 0 !important;
background-color: #b1b1e8 !important;
height: 60%;
}
.wp-show-posts-inner .wp-show-posts-image {
z-index: 0;
width: auto !important;
height: 100% !important;
object-fit:cover;
}
.wp-show-posts-inner .wp-show-posts-image img {
height: 100%;
width: auto;
}
Let us know if you need something specific to be modified. 😀