I tried to use position:absolute to fix the “Read More” button to the bottom of each div/post box (and centered).
If I have more than one row of posts, the buttons only attach themselves to the very bottom of the page. Right now the spacing is off too, and the read more buttons are over the page numbers.
@aloha1. Welcome to the SP forums. Did you allteady fix it? When I look at the different blockposts I see a Read More button (green) centered under each title.
Edit: Anyhow, when you would like to have the “Read More” buttons positioned absolute, the parent of these buttons, should be positioned relative
@aloha1. I think you should set position relative on elementor-post:
.elementor-post {
position: relative;
}
and the following properties for the buttons:
.elementor-post__read-more {
position: absolute;
top: 100%;
left: 50%;
transform: translate(-50%, -50%);
// I don't know the other properties for the buttons
}