Hey! I installed the Blocksy theme on my computer and got the same issue.
I will make a change so it also works with thee Blocksy Theme. I let you know when it is ready so you can update the plugin.
@millennyum Could you check if version 2.0.6 is working for you?
It may take a little while before the update appears in your Plugins list. If it doesn’t show up yet, you can download it from here and upload it via Plugins → Add Plugin. WordPress will automatically replace the old version with the new one.
It works now! Thank you so much for your quick action!
Great to hear! Thank you so much for your kind review. We really appreciate it!
Hm, I just noticed that it hasn’t resolved the issue at all locations. The featured images from the related posts at the bottom of a post are still not focused correctly.
For example, see https://www.millennyum.nl/en/2026/02/medieval-frilled-veil/
Hi,
It looks like you’ve added some custom CSS to Related Posts by PickPlugins to make the blocks match your theme.
If you add the following CSS at the end of your own css, it should fix the image sizing:
.related-post .post-list .item .post_thumb {
height: 200px;
}
.related-post .post-list .item .post_thumb > a {
display: inline-block;
width: 100%;
height: 100%;
}
.related-post .post-list .item .post_thumb > a > img {
height: 100%;
object-fit: cover;
}
And the prev and next button image are working. You can see this is you change the focus point all the way to the bottom the image will shift.
Hope this helps.
You’re amazing, thank you very much for your help! <3