Hi @icaroferreira
Most likely this is because your theme is displaying an enlarged version of a tiny image.
See this link which shows you how to customise the default BuddyPress avatar sizes: https://codex.buddypress.org/getting-started/guides/customizing-buddypress-avatars/
Thank you henry, but the photo that I selected is great and BuddyPress appears small, then, should not lose resolution.
Do you have a link to your website?
I wanted to look at the page source to see what image file your theme uses. I can’t see that from the screenshot.
How do I pass you the access data: “login” and “password” ? For you to access the wp-admin my website.
@icaroferreira,
avatar size are defined in WP settings. And BP use a default size of respectively 50px and 150px.
With some theme, you have to increase these default size.
To do so you can add this to your bp-custom or child theme functions.php file.
/* AVATAR MAX CROP SIZING */
define ( 'BP_AVATAR_THUMB_WIDTH', 60 );
define ( 'BP_AVATAR_THUMB_HEIGHT', 60 );
define( 'BP_AVATAR_FULL_WIDTH', 175 );
define( 'BP_AVATAR_FULL_HEIGHT', 175 );