I want my blog post thumbnails give a dotted overlay effect. The solutions I found where all CSS background-image controlled. But with such a solution it is harder to change the thumbnail.
Basically what I want is something like this:
<div class="blog-image">
<div class="pixel-overlay"></div>
<img class="img-responsive" src="assets/img/post1.jpg">
</div>
The thumbnail is then a so you can easily control the source for other posts.
I did try many many things, but I never got it working. The pixel-overlay div will always push the IMG out of the way.
So how can I create an overlay without something like background-image: "assets/img/post1.jpg".........