diff --git a/views_data_export_plugin_style_export.inc b/views_data_export_plugin_style_export.inc
index 3e6227b..849308c 100644
--- a/plugins/views_data_export_plugin_style_export.inc
+++ b/plugins/views_data_export_plugin_style_export.inc
@@ -24,6 +24,10 @@ class views_data_export_plugin_style_export extends views_plugin_style {
       'default' => $this->definition['export feed text'],
       'translatable' => TRUE,
     );
+    $options['image_link'] = array(
+      'default' => TRUE,
+      'translatable' => FALSE,
+    );
     $options['provide_file'] = array(
       'default' => FALSE,
       'translatable' => FALSE,
@@ -56,6 +60,12 @@ class views_data_export_plugin_style_export extends views_plugin_style {
       '#default_value' => $this->options['attach_text'],
       '#description' => t('This text is used in building the feed link. By default it is the "alt" text for the feed image.'),
     );
+    $form['image_link'] = array(
+      '#type' => 'checkbox',
+      '#title' => t('Show link as image'),
+      '#default_value' => $this->options['image_link'],
+      '#description' => t('Uncheck this for a plain text link.'),
+    );
     $form['provide_file'] = array(
       '#type' => 'checkbox',
       '#title' => t('Provide as file'),
@@ -168,13 +178,22 @@ class views_data_export_plugin_style_export extends views_plugin_style {
     if (!isset($this->view->feed_icon)) {
       $this->view->feed_icon = '';
     }
-    $this->view->feed_icon .= theme($theme_pattern, array(
-        'image_path' => $this->definition['export feed icon'],
-        'url' => $this->view->get_url(NULL, $path),
-        'query' => $query,
-        'text' => $this->options['attach_text'],
-      )
-    );
+    if ($this->options['image_link']) {
+      $this->view->feed_icon .= theme($theme_pattern, array(
+          'image_path' => $this->definition['export feed icon'],
+          'url' => $this->view->get_url(NULL, $path),
+          'query' => $query,
+          'text' => $this->options['attach_text'],
+        )
+      );
+    }
+    else {
+      $this->view->feed_icon .= l(
+        $this->options['attach_text'],
+        $this->view->get_url(NULL, $path),
+        array('attributes' => array('class' => array('views-data-export')))
+      );
+    }
   }
 
   function build_sort() {
diff --git a/views_data_export.drush.inc b/views_data_export.drush.inc
index 85d8af5..67e7237 100644
--- a/views_data_export.drush.inc
+++ b/views_data_export.drush.inc
@@ -301,6 +301,7 @@ function _drush_views_data_export_clone_display(&$view, $display_id, $settings =
       'style_plugin' => 'views_data_export_csv',
       'style_options' => array(
         'attach_text' => 'CSV',
+        'image_link' => 1,
         'provide_file' => 1,
         'filename' => 'view-%view.csv',
         'parent_sort' => 1,
