Hi there,
For the read more button:
If you want to move the read more button to the left, add this CSS:
.wpsp-read-more {
float: left;
padding-left: 20px;
}
If you want to change the color, add this CSS:
.wpsp-read-more > a.wp-show-posts-read-more, a.wp-show-posts-read-more:visited {
background-color: unset;
border: 2px solid black;
color: black;
}
As for the entry meta order, try this CSS:
span.wp-show-posts-separator {
display: none;
}
.wp-show-posts-entry-meta {
display: flex;
align-items: center;
align-content: center;
}
.wp-show-posts-entry-meta .wp-show-posts-byline {
order: 2;
}
.wp-show-posts-entry-meta > .wp-show-posts-posted-on:after {content: "·";margin-right: 10px;}