Tagged: BuddyPress Small Avatars
- I read your guide to BuddyPress avatars which sounded really good. - What is the little photo called when its displayed in activity streams, member directories and “all users” WP admin dashboard. I would like to make these photos larger too. - Regarding the WP admin dashboard “all users” editor. Do you know how to make the rows scroll so you can add more columns without the rows getting ridiculously tall. 
- Hi Dave, 
 Those are activity avatars. what size you will like to have them? Do you want to have different size for activity and activity comments? Please let me know and I will help.- About admin dashboard:- - You can put the following code in your theme’s functions.php - function buddydev_scrollable_users_list_css() { ?> <style type="text/css"> body.users-php .wrap { overflow-x: auto; } body.users-php table.users { table-layout: unset; } </style> <?php } add_action( 'admin_print_footer_scripts-users.php', 'buddydev_scrollable_users_list_css' );- That should do it. 
 Hope that helps.- regards 
 Brajesh
You must be logged in to reply to this topic.