diff --git a/core/modules/filter/filter.module b/core/modules/filter/filter.module
index 3dc72a6..154609c 100644
--- a/core/modules/filter/filter.module
+++ b/core/modules/filter/filter.module
@@ -1145,7 +1145,7 @@ function theme_filter_guidelines($variables) {
   $attributes['class'][] = 'filter-guidelines-item';
   $attributes['class'][] = 'filter-guidelines-' . $format->format;
   $output = '<div' . drupal_attributes($attributes) . '>';
-  $output .= '<h3>' . check_plain($format->name) . '</h3>';
+  $output .= '<div class="label">' . check_plain($format->name) . '</div>';
   $output .= theme('filter_tips', array('tips' => _filter_tips($format->format, FALSE)));
   $output .= '</div>';
   return $output;
diff --git a/core/modules/locale/locale.admin.inc b/core/modules/locale/locale.admin.inc
index 2c78e17..de50834 100644
--- a/core/modules/locale/locale.admin.inc
+++ b/core/modules/locale/locale.admin.inc
@@ -132,7 +132,7 @@ function theme_language_negotiation_configure_form($variables) {
   foreach ($form['#language_types'] as $type) {
     $rows = array();
     $info = $form['#language_types_info'][$type];
-    $title = '<label>' . $form[$type]['#title'] . '</label>';
+    $title = '<div class="label">' . $form[$type]['#title'] . '</div>';
     $description = '<div class="description">' . $form[$type]['#description'] . '</div>';
 
     foreach ($form[$type]['title'] as $id => $element) {
diff --git a/core/modules/system/system.admin.css b/core/modules/system/system.admin.css
index 7299484..349752b 100644
--- a/core/modules/system/system.admin.css
+++ b/core/modules/system/system.admin.css
@@ -248,7 +248,7 @@ table.screenshot {
   margin: 0 0 0.1em 0;
   padding: 0;
 }
-.exposed-filters .form-item label {
+.exposed-filters .form-item label, div.label {
   float: left; /* LTR */
   font-weight: normal;
   width: 10em;
