diff --git a/sites/default/modules/contrib/text_resize/text_resize.js b/sites/default/modules/contrib/text_resize/text_resize.js
index d3001fe..7233af2 100644
--- a/sites/default/modules/contrib/text_resize/text_resize.js
+++ b/sites/default/modules/contrib/text_resize/text_resize.js
@@ -3,15 +3,7 @@
     attach: function(context) {
       // Which div or page element are we resizing?
       if (text_resize_scope) { // Admin-specified scope takes precedence.
-        if ($('#'+text_resize_scope).length > 0) {
-          var element_to_resize = $('#'+text_resize_scope); // ID specified by admin
-        }
-        else if ($('.'+text_resize_scope).length > 0) {
-          var element_to_resize = $('.'+text_resize_scope); // CLASS specified by admin
-        }
-        else {
-          var element_to_resize = $(text_resize_scope); // It's just a tag specified by admin
-        }
+        var element_to_resize = $(text_resize_scope);
       }
       else { // Look for some default scopes that might exist.
         if ($('DIV.left-corner').length > 0) {
diff --git a/sites/default/modules/contrib/text_resize/text_resize.module b/sites/default/modules/contrib/text_resize/text_resize.module
index 22c35cc..22a4b90 100644
--- a/sites/default/modules/contrib/text_resize/text_resize.module
+++ b/sites/default/modules/contrib/text_resize/text_resize.module
@@ -31,7 +31,7 @@ function _text_resize_admin_settings() {
     '#type' => 'textfield',
     '#title' => t('Text Resize Scope'),
     '#default_value' => _get_text_resize_scope(),
-    '#description' => t('Which portion of the body would you like to be resized by the Text Resize block? You may enter either the CSS class attribute, the CSS id attribute, or an HTML tag.<br />For example, if you want all text within &lt;div id="my-container"&gt; to be resized, enter the ID <strong>my-container</strong>.<br />If, on the other hand, you would like all text within the BODY tag to be resized, enter <strong>body</strong>.'),
+    '#description' => t('Which portion of the body would you like to be resized by the Text Resize block? You may enter either the CSS class attribute, the CSS id attribute, or an HTML tag.<br />For example, if you want all text within &lt;div id="my-container"&gt; to be resized, enter the ID <strong>#my-container</strong>.<br />If you want all text within &lt;div class="my-container"&gt; to be resized, enter <strong>.my-container</strong>.<br/> If, on the other hand, you would like all text within the BODY tag to be resized, enter <strong>body</strong>.'),
     '#required' => TRUE,
   );
   $form['text_resize_minimum'] = array(
