Hi @splinter1, I hope you are doing great,
Unfortunately, I could see that theme does not limit the thumbnail size for some reason, our developers will review the GitHub issue you opened.
In the meantime, here is a workaround that limits the thumbnail size, feel free to adjust the values as necessary:
img.attachment-primer-featured.size-primer-featured.wp-post-image {
max-width: 350px;
}
To hide the ‘continue reading’ button you may use this code:
.blog .post .entry-summary a.button {
display: none;
}
I hope this helps, for the time being at least.
Have a nice day,
Andrija
Hi @gdandrija
Thanks very much indeed!
Both of those codes immediately solved the issue for me.
Cheers!
https://compufixshop.com/blog/
I also found a way of displaying the blog page posts in two columns:
.blog .post {
max-width: 45%;
margin-right: 10px;
display: inline-block;
vertical-align: top;
}
.blog .post:nth-of-type(even) {
margin-right: 0;
}
And if the featured images are of different sizes, you can limit that size height to say, 300px
.blog .wp-post-image {
max-height: 300px;
}
Hi @splinter1,
I can see that you found a way to set up the preferred appearance, and I’m delighted to hear that.
It was my pleasure to assist you and thanks for the update, I wish you all the best.
Have a nice day,
Andrija