diff --git a/components/date.inc b/components/date.inc
index 40d6ded..57f44ff 100644
--- a/components/date.inc
+++ b/components/date.inc
@@ -200,6 +200,8 @@ function webform_expand_date($element) {
         break;
     }
     unset($element[$type]['#value']);
+    $element[$type]['#title'] = $none;
+    $element[$type]['#title_display'] = 'invisible';
     $element[$type]['#default_value'] = isset($default_values[$type]) ? $default_values[$type] : NULL;
     $element[$type]['#options'] = array('' => $none) + $element[$type]['#options'];
   }
diff --git a/components/time.inc b/components/time.inc
index 30a9053..35e8b15 100644
--- a/components/time.inc
+++ b/components/time.inc
@@ -202,12 +202,16 @@ function webform_expand_time($element) {
   $element['hour'] = array(
     '#prefix' => '',
     '#type' => 'select',
+    '#title' => t('Hour'),
+    '#title_display' => 'invisible',
     '#default_value' => $default_values['hour'],
     '#options' => $hours,
   );
   $element['minute'] = array(
     '#prefix' => ':',
     '#type' => 'select',
+    '#title' => t('Minute'),
+    '#title_display' => 'invisible',
     '#default_value' => $default_values['minute'],
     '#options' => $minutes,
   );
