Hello, on the Activitiy page, can i make the avatars display smaller? i would like them to be the same size they are on the members page.
Ive been messing around with the css files but
I assumed this was it: #activity-stream .activity-avatar {
margin: 0px 15px 0px 0px;
padding: 0px;
float: left;
}
but when i add a width & height, the avatar stays the same size, but the alignment gets messed up.
Does anyone know how I could make the activity page avatars smallers? thanks
Hello, on the Activitiy page, can i make the avatars display smaller? i would like them to be the same size they are on the members page.
Ive been messing around with the css files but
I assumed this was it: #activity-stream .activity-avatar {
margin: 0px 15px 0px 0px;
padding: 0px;
float: left;
}
but when i add a width & height, the avatar stays the same size, but the alignment gets messed up.
Does anyone know how I could make the activity page avatars smallers? thanks
Responses (2)
WPMU.org Writer — 7th June 2010 #
You can change it with CSS but one other way is to edit your wp-config.php file to include any of these edits:
define ( 'BP_AVATAR_THUMB_WIDTH', 50 );
define ( 'BP_AVATAR_THUMB_HEIGHT', 50 );
define ( 'BP_AVATAR_FULL_WIDTH', 150 );
define ( 'BP_AVATAR_FULL_HEIGHT', 150 );
define ( 'BP_AVATAR_ORIGINAL_MAX_WIDTH', 640 );
define ( 'BP_AVATAR_ORIGINAL_MAX_FILESIZE', $max_in_kb );
define ( 'BP_AVATAR_DEFAULT', $img_url );
define ( 'BP_AVATAR_DEFAULT_THUMB', $img_url );
Member — 7th June 2010 #
Thanks for reply. I added the lines to wp-config but still no luck.
Become a member