diff --git a/sites/all/modules/contrib/fbconnect/fbconnect.pages.inc b/sites/all/modules/contrib/fbconnect/fbconnect.pages.inc
index e814edf..ce16367 100644
--- a/sites/all/modules/contrib/fbconnect/fbconnect.pages.inc
+++ b/sites/all/modules/contrib/fbconnect/fbconnect.pages.inc
@@ -196,6 +196,7 @@ function facebook_login_page(&$form, $form_state = array()) {
       '#description' => t('Log in using your facebook account'),
       '#type' => 'item',
       '#markup' => l(t('Log in to Facebook'), $login_url),
+      '#weight' => 0,
     );
     return $form;
 }
@@ -296,6 +297,7 @@ function fbconnect_user_settings_form($form, $form_state, $account) {
     '#title' => t('Let my Facebook friends see me on @site', array('@site' => $conf['invite_name'])),
     '#description' => t('My Facebook friends will be able to see that I own an account on this website.'),
     '#default_value' => isset($account->data['fb_visible']) ? $account->data['fb_visible'] : NULL,
+    '#weight' => 0,
   );
 
   // Whether user picture is enabled,
@@ -306,6 +308,7 @@ function fbconnect_user_settings_form($form, $form_state, $account) {
       '#title' => t('Use my Facebook picture as user picture'),
       '#description' => t('Your picture will be loaded from facebook.'),
       '#default_value' => isset($account->data['fb_avatar']) ? $account->data['fb_avatar'] : NULL,
+      '#weight' => 1,
     );
   }
 
@@ -328,12 +331,14 @@ function fbconnect_user_settings_form($form, $form_state, $account) {
     '#type' => 'fieldset',
     '#collapsed' => TRUE,
     '#collapsible' => TRUE,
+    '#weight' => 2,
   );
 
   $form['fbconnect']['profile'] = array(
     '#type' => 'item',
     '#title' => t('Linked to this Facebook account'),
     '#value' => '<fb:name uid="' . $account->fbuid . '" useyou="false" linked="true"></fb:name>',
+    '#weight' => 3,
   );
 
   $form['fbconnect']['unlink'] = array(
@@ -341,11 +346,13 @@ function fbconnect_user_settings_form($form, $form_state, $account) {
     '#description' => t('Click here to unlink this Facebook account'),
     '#value' => t('Unlink'),
     '#access' => !!facebook_client(), // don't show unlink button if fbconnect is'nt properly configured
+    '#weight' => 4,
   );
 
   $form['submit'] = array(
     '#type' => 'submit',
     '#value' => t('Save settings'),
+    '#weight' => 5,
   );
   return $form;
 }
