? addressfield.css
Index: addressfield.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/addressfield/addressfield.module,v
retrieving revision 1.17
diff -u -p -r1.17 addressfield.module
--- addressfield.module	18 Jan 2011 16:43:59 -0000	1.17
+++ addressfield.module	18 Jan 2011 16:47:24 -0000
@@ -303,6 +303,11 @@ function addressfield_field_widget_form(
     // Provide a wrapper ID for AJAX replacement based on country selection.
     $wrapper_id = drupal_html_class($field['field_name']) . '-' . $langcode . '-' . $delta . '-addressfield-wrapper';
 
+    // Wrap everything in a fieldset. This is not the best looking element,
+    // but it's the only wrapper available in Drupal we can properly use
+    // in that context, and it is overridable if necessary.
+    $element['#type'] = 'fieldset';
+
     $element['#prefix'] = '<div id="' . $wrapper_id . '">';
     $element['#suffix'] = '</div>';
 
