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?
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?
Please include a link to the page on your site where we can see your form so we can help you with the CSS.
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.
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.
Wordpress dashboard > appearance > editor > style.css
Yes. If the file is editable, that is the quickest way to do it.
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
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;
}
Yes that worked perfect. Thanks so much for providing that to me. Really appreciate it!
Have a great day!