Blurry avatar images
-
Hi everyone.
Recently I have increased my avatar thumbnail sizes to about 225×225 and full size image to 270×270 but for the sake of the retina, I’m also trying to upload them larger much larger.I have changed my settings to this below but for some reason, the images still come out blurry – even if uploading very his res photo. Is there anything else I should do? I tried this code both in the child theme functions.php and in bp-custom.php but still blurry (both avatar and main image but avatar worse).
if ( !defined( ‘BP_AVATAR_THUMB_WIDTH’ ) )
define( ‘BP_AVATAR_THUMB_WIDTH’, 300 ); //change this with your desired thumb widthif ( !defined( ‘BP_AVATAR_THUMB_HEIGHT’ ) )
define( ‘BP_AVATAR_THUMB_HEIGHT’, 300 ); //change this with your desired thumb heightif ( !defined( ‘BP_AVATAR_FULL_WIDTH’ ) )
define( ‘BP_AVATAR_FULL_WIDTH’,300 ); //change this with your desired full size,weel I changed it to 260if ( !defined( ‘BP_AVATAR_FULL_HEIGHT’ ) )
define( ‘BP_AVATAR_FULL_HEIGHT’, 300 ); //change this to default height for full avatarif ( !defined( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’ ) )
define( ‘BP_AVATAR_ORIGINAL_MAX_WIDTH’, 800 );
- You must be logged in to reply to this topic.