diff --git a/extlink.css b/extlink.css
index 44de35c..31b180b 100644
--- a/extlink.css
+++ b/extlink.css
@@ -1,9 +1,9 @@
 span.ext {
-  background: url(extlink.png) right center no-repeat;
+  background: url(extlink.png) 2px center no-repeat;
   padding-right: 12px;
 }
 span.mailto {
-  background: url(mailto.png) right center no-repeat;
+  background: url(extlink.png) -20px center no-repeat;
   padding-right: 12px;
 }
 
diff --git a/extlink.module b/extlink.module
index bd2f270..3b2d62d 100644
--- a/extlink.module
+++ b/extlink.module
@@ -48,7 +48,7 @@ function extlink_admin_settings() {
     '#title' => t('Add icon to external links'),
     '#return_value' => 'ext',
     '#default_value' => variable_get('extlink_class', 'ext'),
-    '#description' => t('Places an !icon icon next to external links.', array('!icon' => theme('image', drupal_get_path('module', 'extlink') .'/extlink.png'))),
+    '#description' => t('Places an !icon icon next to external links.', array('!icon' => '<span class="ext" style="display:inline-block;height:10px;width:10px;padding-right:0px;background-position:0 0"></span>')),
   );
 
   $form['extlink_mailto_class'] = array(
@@ -56,7 +56,7 @@ function extlink_admin_settings() {
     '#title' => t('Add icon to mailto links'),
     '#return_value' => 'mailto',
     '#default_value' => variable_get('extlink_mailto_class', 'mailto'),
-    '#description' => t('Places an !icon icon next to mailto links.', array('!icon' => theme('image', drupal_get_path('module', 'extlink') .'/mailto.png'))),
+    '#description' => t('Places an !icon icon next to mailto links.', array('!icon' => '<span class="mailto" style="display:inline-block;height:10px;width:10px;padding-right:0px;background-position:-22px 0"></span>')),
   );
 
   $form['extlink_subdomains'] = array(
