Hi Elvin
I’ve not used any Card Styles, so the above CSS, was used to style the Post Inners with the non-pro version (Link caused this: ERROR: Your reply cannot be created at this time.) once I upgraded to the pro version the Post Inner styles disappeared, I did notice in another browser there was a flash of content, so I applied a z-index 1, which cleaned up the issues, so while the z-index has worked, is this correct that moving from free to pro requires additional CSS?
/*WP Show Posts Inner*/
.wp-show-posts-inner {
position: relative;
}
.wp-show-posts-entry-header {
position: absolute;
bottom: 5px;
padding: 10px;
background: #b91372;
left: 15px;
border-radius: 8px;
z-index: 1;
}
.wp-show-posts-image.wpsp-image-center {
margin-bottom: 0;
}
.wp-show-posts-entry-title a {
color: #fff;
}
Jon