Hi Dennis,
I am really sorry for the delay of this reply.
I just take a quick look on the code and the ordering is determined by the date of uploaded picture where the oldest picture will stay at the top of the albums. If you want to change the ordering so that the latest picture will be at the top, you can modify this by going to your /administrator/components/com_easysocial/includes/albums/albums.php at line 190 add one more options as follow:
$newPhotos = $model->getPhotos( array( 'album_id' => $albumId, 'start' => $nextStart, 'limit' => $tmpLimit , 'state' => SOCIAL_STATE_PUBLISHED, 'privacy' => $isPrivacyRequired) );
// change to
$newPhotos = $model->getPhotos( array( 'album_id' => $albumId, 'start' => $nextStart, 'limit' => $tmpLimit , 'state' => SOCIAL_STATE_PUBLISHED, 'privacy' => $isPrivacyRequired, 'sort' => 'ASC') );
Hope these help.