diff --git uc_attribute/uc_attribute.admin.inc uc_attribute/uc_attribute.admin.inc
index a5b433a..d2a8ef5 100644
--- uc_attribute/uc_attribute.admin.inc
+++ uc_attribute/uc_attribute.admin.inc
@@ -105,6 +105,7 @@ function uc_attribute_form($form_state, $attribute = NULL) {
   );
   $form['ordering'] = array(
     '#type' => 'weight',
+    '#delta' => 25,
     '#title' => t('List position'),
     '#description' => t('Multiple attributes on an add to cart form are sorted by this value and then by their name.<br />May be overridden at the product level.'),
     '#default_value' => isset($attribute->ordering) ? $attribute->ordering : 0,
@@ -357,6 +358,7 @@ function uc_attribute_option_form($form_state, $attribute, $option = NULL) {
   );
   $form['ordering'] = array(
     '#type' => 'weight',
+    '#delta' => 50,
     '#title' => t('List position'),
     '#description' => t('Options will be listed sorted by this value and then by their name.<br />May be overridden at the product level.'),
     '#default_value' => isset($option->ordering) ? $option->ordering : 0,
@@ -550,8 +552,9 @@ function uc_object_attributes_form($form_state, $object, $type, $view = 'overvie
           ),
           'ordering' => array(
             '#type' => 'weight',
+            '#delta' => 25,
             '#default_value' => $attribute->ordering,
-            '#attributes' => array('class' => 'uc-attribute-table-weight'),
+            '#attributes' => array('class' => 'uc-attribute-table-ordering'),
           ),
           'display' => array(
             '#type' => 'select',
@@ -647,7 +650,7 @@ function theme_uc_object_attributes_form($form) {
       );
     }
 
-    drupal_add_tabledrag('uc-attribute-table', 'order', 'sibling', 'uc-attribute-table-weight');
+    drupal_add_tabledrag('uc-attribute-table', 'order', 'sibling', 'uc-attribute-table-ordering');
     $output = theme('table', $header, $rows, array('id' => 'uc-attribute-table'));
   }
   else {
