I think the screenshots are missing somehow. How to insert them here in the forum is described here: https://ww.wp.xz.cn/support/forum-user-guide/block-editor/#adding-screenshots
Thanks. If you look on the site, its easy to see in the right column …
The reason for this is this CSS:
.entry-content a img, .entry-summary a img, .comment-content a img, .textwidget a img {
display: block;
}
I suspect it would be sufficient to remove .textwidget a img from this code. Don’t remove the whole thing, as it also refers to other images where it is probably important.
Alternatively, change display: block to display: inline-block. But that could also affect other things.
Since this code is cached, I don’t know if it comes from your custom CSS. If not, you would have to override it with this:
body .textwidget a img { display: inline-block }