diff --git a/twitter.pages.inc b/twitter.pages.inc
index f861bff..4a3b04b 100644
--- a/twitter.pages.inc
+++ b/twitter.pages.inc
@@ -181,7 +181,10 @@ function _twitter_account_list_row($account) {
   );
 
   $form['image'] = array(
-    '#markup' => theme('image', array('path' => $account->profile_image_url)),
+    '#theme' => 'image',
+    '#path' => $account->profile_image_url,
+    '#width' => 48,
+    '#height' => 48,
   );
 
   $form['visible_name'] = array(
diff --git a/twitter_views_field_handlers.inc b/twitter_views_field_handlers.inc
index b8d8d6a..0539775 100644
--- a/twitter_views_field_handlers.inc
+++ b/twitter_views_field_handlers.inc
@@ -83,7 +83,7 @@ class twitter_views_handler_field_xss extends views_handler_field {
 class twitter_views_handler_field_profile_image extends views_handler_field {
   function render($values) {
     $value = $values->{$this->field_alias};
-    return theme('image', array('path' => $value));
+    return theme('image', array('path' => $value, 'width' => 48, 'height' => 48));
   }
 }
 
