Hi, I just wanted to add a comment, since I believe it’s similar to the above.
I love your plugin so far, but the first image I tested it in came in at a massive size, and I’m just looking for tiny 100x100px thumbnails next to each story. I didn’t see any size settings in the widget, so I had to add a messy CSS rule to force the size down. Right now it looks like this (“enterprise” is the name of my theme):
img.attachment-enterprise_featured_image.featured-img.wp-post-image.nelioefi {
float: right !important;
border: 1px solid #eee !important;
margin-left: 1em !important;
width: 100px !important;
height: 100px !important;
}
I had to use “!important” because the style for img.attachment-enterprise_featured_image.featured-img.wp-post-image.nelioefi is somewhere I can’t find, and it refused to be overridden. But the style above works! It’s just incredibly messy, and reveals me to be the newbie I am.
So I guess my question is: is the above the best I can expect, or is there a better way I should be doing this?
Thanks for your patience. I am clearly no expert at WP.