Thank you very much for the links! 🙂
I knew that changing the CSS directly was a dirty hack, but I wanted a quick fix.
I was already looking for ways to do something along the lines you suggested, and your suggestions just cut that search short.
And the explanation for why it’s called a “thumbnail” in the css is also very much appreciated.
Thank you very much, sincerely. 🙂
Okay, I managed to solve it.
But I might need some follow-up help to understand WHY I solved it. 😉
I changed this:
entry-thumbnail img {
background: #120f10;
border: none;
box-shadow: 0 0 0px rgba(0, 0, 0, 0.9);
To this:
entry-thumbnail img {
background: none;
border: none;
box-shadow: 0 0 0px rgba(0, 0, 0, 0.9);
But this leads me to one question: Why is the image using “thumbnail img”? It’s not a thumbnail, you can’t click on it to get a larger version. Or is “thumbnail” used to denote any scaled image here?