PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Increase text and Box size

  1. All I want to do is increase the size of the text boxes and the text inside those. Is there a simple way to do this?

    Posted 11 years ago on Saturday March 16, 2013 | Permalink
  2. Please include a link to the page on your site where we can see your form so we can help you with the CSS.

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  3. http://therxreview.com/advertise/

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  4. Add this to one of your theme's stylesheets:

    [css]
    body .gform_wrapper textarea.small {
        height: 200px;
        font-size: 20px;
    }

    Adjust the values as necessary.

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  5. Can I ask where I do that? Is it by going through FTP or simply in the into the Wordpress dashboard > appearance > editor > style.css

    That is where my confusion is. Thanks in advance Chris.

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  6. Wordpress dashboard > appearance > editor > style.css

    Yes. If the file is editable, that is the quickest way to do it.

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  7. I tried that and it did not work. So I placed it in custom.css and that worked for the "comments box"

    But how to I increase the size of all the text and boxes above like name, website, email, phone and budget?

    Thanks so much for helping me Chris

    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  8. This CSS should take care of all inputs on that form:

    [css]
    body .gform_wrapper input[type='text'] {
    	height: 24px;
    	line-height:20px;
    	font-size: 16px;
    }
    
    body .gform_wrapper select {
    	height: 32px;
    	line-height:20px;
    	font-size: 16px;
    }
    
    body .gform_wrapper textarea {
    	font-size: 16px;
    	height: 200px;
    }
    Posted 11 years ago on Sunday March 17, 2013 | Permalink
  9. Yes that worked perfect. Thanks so much for providing that to me. Really appreciate it!

    Have a great day!

    Posted 11 years ago on Monday March 18, 2013 | Permalink

This topic has been resolved and has been closed to new replies.