Index: location.inc
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/location/location.inc,v
retrieving revision 1.42
diff -u -r1.42 location.inc
--- location.inc	20 Oct 2006 21:44:00 -0000	1.42
+++ location.inc	22 Nov 2006 15:21:28 -0000
@@ -319,7 +319,7 @@
 
   if (in_array('name', $fields)) {
     $form['name'] = array(
-        '#prefix' => '<div class="container-inline">',
+        '#prefix' => '<div class="container-inline location_name">',
         '#suffix' => "</div>\n",
         '#type' => 'textfield',
         '#title' => t('Location name'),
@@ -333,7 +333,7 @@
   }
   if (in_array('street', $fields)) {
     $form['street'] = array(
-        '#prefix' => '<div class="container-inline">',
+        '#prefix' => '<div class="container-inline location_street">',
         '#suffix' => "</div>\n",
         '#type' => 'textfield',
         '#title' => t('Street'),
@@ -343,7 +343,7 @@
         '#required' => in_array('street', $required_fields)
         );
     $form['additional'] = array(
-        '#prefix' => '<div class="container-inline">',
+        '#prefix' => '<div class="container-inline location_additional">',
         '#suffix' => "</div>\n",
         '#type' => 'textfield',
         '#title' => t('Additional'),
@@ -354,7 +354,7 @@
   }
   if (in_array('city', $fields)) {
     $form['city'] = array(
-        '#prefix' => '<div class="container-inline">',
+        '#prefix' => '<div class="container-inline location_city">',
         '#suffix' => "</div>\n",
         '#type' => 'textfield',
         '#title' => t('City'),
@@ -375,13 +375,13 @@
     }
     else {
       $form['province'] = _location_province_select_options(isset($prefilled_values['province']) ? $prefilled_values['province'] : '', in_array('province', $required_fields), in_array('country', array_keys($suppressed_values)) ? $suppressed_values['country'] : NULL);
-      $form['province']['#prefix'] = '<div class="container-inline">';
+      $form['province']['#prefix'] = '<div class="container-inline location_province">';
       $form['province']['#suffix'] = "</div>\n";
     }
   }
   if (in_array('postal_code', $fields)) {
     $form['postal_code'] = array(
-        '#prefix' => '<div class="container-inline">',
+        '#prefix' => '<div class="container-inline location_postal_code">',
         '#suffix' => "</div>\n",
         '#type' => 'textfield',
         '#title' => t('Postal code'),
@@ -400,7 +400,7 @@
     }
     else {
       $form['country'] = _location_country_select_options(isset($prefilled_values['country']) ? $prefilled_values['country'] : '', in_array('country', $required_fields), $function);
-      $form['country']['#prefix'] = '<div class="container-inline">';
+      $form['country']['#prefix'] = '<div class="container-inline location_country">';
       $form['country']['#suffix'] = "</div>\n";
     }
   }
@@ -418,7 +418,7 @@
   }
   
   $form['latitude'] = array(
-      '#prefix' => '<div class="container-inline">',
+      '#prefix' => '<div class="container-inline  location_latlon">',
       '#type' => 'textfield',
       '#title' => t('Latitude'),
       '#default_value' => isset($prefilled_values['latitude']) ? $prefilled_values['latitude'] : '',
