I’m wondering if you could point me to the URL of this forum? I’m wondering if you’re removing the width and height from your img tags.
I have sent you a message through your websites contact form with the information for a test account to see the forums with since they are set to members only.
You’re using Bootstrap CSS, so it’s setting all of your images to width: auto. When you use Gravatar, if you ask for a 16×16 image, you’ll get an image exactly that size. If it’s a local avatar, as with any image in your Media Library, you’ll get the image closest to the size you want sized down with HTML width and height attributes. CSS overrides those attributes so that’s why you’re seeing the images in their true sizes. You either need to remove the width: auto or set CSS widths for specific images.
Thank you for being incredibly helpful. I took the second option and set a css width. I don’t know if this is the best way but it seems to be working. Thanks for taking the time to not only make a wonderful plugin but to support it as well.
#bbpress-forums li.bbp-body li.bbp-forum-freshness img.avatar {
width: 16px !important;
height: auto !important;
margin: 0px !important;
}