diff --git a/webform_countdown.module b/webform_countdown.module
index 3db8b5a..9820174 100644
--- a/webform_countdown.module
+++ b/webform_countdown.module
@@ -262,7 +262,9 @@ function _webform_table_countdown($component, $value) {
  */
 function _webform_csv_headers_countdown($component, $export_options) {
   $header = array();
-  $header[0] = $component['name'];
+  $header[0] = '';
+  $header[1] = '';
+  $header[2] = $component['name'];
   return $header;
 }
 
@@ -299,7 +301,7 @@ function _webform_countdown_add_counter($form_key, $max = 140, $type = 'char', $
       // Add simply countable jQuery plugin if it exists.
       drupal_add_js($path . '/word-and-character-counter.js');
 
-      // Add inline JS to handle counter.  
+      // Add inline JS to handle counter.
       // Replace _ with - in component keys to match dom IDs.
       drupal_add_js('jQuery(document).ready(function () { jQuery("#edit-submitted-' . str_replace('_', '-', $form_key) . '").counter({ type: "' . $type . '", goal: ' . $max . ', msg: "' . t($message) . '", append: false }); });', 'inline');
     }
