diff --git a/cpv_plugin_display_extender_code.inc b/cpv_plugin_display_extender_code.inc
index b2345f0..df66cfc 100644
--- a/cpv_plugin_display_extender_code.inc
+++ b/cpv_plugin_display_extender_code.inc
@@ -63,6 +63,7 @@ class cpv_plugin_display_extender_code extends views_plugin_display_extender {
           '#type' => 'textarea',
           '#description' => t('Custom CSS rules for this display. Do not include @style tags.', array('@style' => '<style>')),
           '#default_value' => $this->display->get_option('cpv_css'),
+          '#rows' => 15,
         );
         break;
       case 'cpv_js':
@@ -71,6 +72,7 @@ class cpv_plugin_display_extender_code extends views_plugin_display_extender {
           '#type' => 'textarea',
           '#description' => t('Custom Javascript for this display. Do not include @script tags.', array('@script' => '<script>')),
           '#default_value' => $this->display->get_option('cpv_js'),
+          '#rows' => 15,
         );
         break;
     }
