? .svn
? 342735_form.patch
? contrib
? database
? geocoding
? handlers
? supported
? tests
Index: location.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/location/location.css,v
retrieving revision 1.8
diff -u -p -r1.8 location.css
--- location.css	16 Sep 2008 17:25:04 -0000	1.8
+++ location.css	4 Dec 2008 17:00:52 -0000
@@ -96,21 +96,20 @@ table.location-search-form-table tbody t
 
 .location .form-item input {
   display: block;
-  float: left;
   width: 342px;
-  margin-bottom: 5px;
+  margin-left: 140px;
 }
 
 .location .form-item label {
   display: block;
   float: left;
   text-align: left;
-  width: 100px;
+  width: 130px;
   padding-right: 10px;
 }
 
 .location .form-item {
-  clear:both;
+  clear: both;
 }
 
 /* "Delete" checkbox. */
@@ -130,6 +129,12 @@ table.location-search-form-table tbody t
   margin-bottom: 0;
 }
 
+/* Place descriptions under the indented input item. */
 .location .description {
-  white-space: normal;
+  margin-left: 140px;
+}
+
+/* Certain instructions are full-fledged though, so no padding. */
+.location .instructions {
+  margin-left: 0;
 }
Index: location.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/location/location.module,v
retrieving revision 1.203
diff -u -p -r1.203 location.module
--- location.module	15 Oct 2008 21:40:56 -0000	1.203
+++ location.module	4 Dec 2008 17:00:52 -0000
@@ -289,14 +289,14 @@ function _location_expand_location($elem
       '#size' => 16,
       '#maxlength' => 20,
     );
-
     $element['locpick']['instructions'] = array(
       '#type' => 'markup',
       '#weight' => 1,
-      '#prefix' => '<div class=\'description\'>',
-      '#value' => '<br /><br />' . t('If you wish to supply your own latitude and longitude, you may enter them above.  If you leave these fields blank, the system will attempt to determine a latitude and longitude for you from the entered address.  To have the system recalculate your location from the address, for example if you change the address, delete the values for these fields.'),
+      '#prefix' => '<div class=\'description instructions\'>',
+      '#value' => t('If you wish to supply your own latitude and longitude, you may enter them above.  If you leave these fields blank, the system will attempt to determine a latitude and longitude for you from the entered address.  To have the system recalculate your location from the address, for example if you change the address, delete the values for these fields.'),
       '#suffix' => '</div>',
-      );
+    );
+
     if (function_exists('gmap_get_auto_mapid') && variable_get('location_usegmap', FALSE)) {
       $mapid = gmap_get_auto_mapid();
       $map = gmap_parse_macro(variable_get('location_locpick_macro', '[gmap]'));
@@ -336,7 +336,7 @@ function _location_expand_location($elem
       $element['locpick']['map_instructions'] = array(
         '#type' => 'markup',
         '#weight' => 2,
-        '#prefix' => '<div class=\'description\'>',
+        '#prefix' => '<div class=\'description instructions\'>',
         '#value' => t('You may set the location by clicking on the map, or dragging the location marker.  To clear the location and cause it to be recalculated, click on the marker.'),
         '#suffix' => '</div>',
       );
