diff --git a/src/inputs/text.js b/src/inputs/text.js
index ef0d4a2..267878e 100644
--- a/src/inputs/text.js
+++ b/src/inputs/text.js
@@ -44,7 +44,7 @@ $(function(){
            if (this.options.clear) {
                this.$clear = $('<span class="editable-clear-x"></span>');
                this.$input.after(this.$clear)
-                          .css('padding-right', 25)
+                          .css('padding-right', 20)
                           .keyup($.proxy(this.toggleClear, this))
                           .parent().css('position', 'relative');
                           
diff --git a/src/inputs/textarea.js b/src/inputs/textarea.js
index b7b1809..16bd9de 100644
--- a/src/inputs/textarea.js
+++ b/src/inputs/textarea.js
@@ -10,7 +10,8 @@ Textarea input
 $(function(){
     $('#comments').editable({
         url: '/post',
-        title: 'Enter comments'
+        title: 'Enter comments',
+        rows: 10
     });
 });
 </script>