I presume they used to be ok? or have they never worked?
Since they are images, almost anything in wordpress could have affected.
have you added any plugins, or updated/changed themes?
Hey, I am sorry for the late reply. I got food poisoning from Togos sandwich shop! Anyways, the forums used to look fine. I have not used any new plugins that could possibly affect the forums and no theme update that I know of could cause this.
Thank you
J
This is most likely an avatar plugin:
eg
<img src="http://www.passingrass.com/wp-content/uploads/avatars/460/5ed932eb9e1a5b11af2d1b9e7029b68e-bpthumb.jpg" class="avatar user-460-avatar avatar-20 photo" width="20" height="20" alt="Profile picture of PassinGrass">
And or your themes CSS at Line #1044
http://www.passingrass.com/wp-content/themes/sweetdate/custom_buddypress/_inc/css/default.css?ver=20140430
table.forum td img.avatar {
float: none;
margin: 0 5px -8px 0;
}
A quick change of that to the following fixes it:
table.forum td img.avatar {
float: none;
margin: 0 5px -8px 0;
width: 20px;
}
You’ll want to find out if it is the plugin or theme and find a more permanent way to keep those changes such as creating a child theme.
Awesome thank you. This current theme is the child theme but I will test this out. Possibly the images are uploaded too large ? I will check my plugins as well. Thank you.