I’ve got this problem also. It really is an eye sore! A fix would be great.
Hi,
I had the same problem in the dashboard and in the comments, which is due to a wrong class. To correct this, just go to the Extensions editor and select the user-avatar extension. In the user-avatar/user-avatar.php file, find the following line :
return '<img src="' . $avatar_url . '" alt="' . $alt . '" class="' . $class . '"' . $css_id . $html_width . $html_height . ' />';
and change it into :
return '<img src="' . $avatar_url . '" alt="' . $alt . '" class="avatar"' . $css_id . $html_width . $html_height . ' />';
It worked fine for me 😉
Thread Starter
exhelp
(@exhelp)
Great! It worked perfect for me! Thank you Mijan for the support!!!!