genesteinberg
Member
Posted 1 year ago #
I would like to see a setting that lets you set the textarea size for messages. Yes, I know it can be done via changing the code in the plugin itself, but the downside is that every time it is upgraded, the change has to be redone.
So is this something you can add?
Peace,
Gene
scottwallick
Member
Posted 1 year ago #
Yes, you can just adjust the height/width of the textarea using CSS, in your theme style sheet.
form.contact-form div.form-textarea textarea {
height: 250px;
width: 500px;
}
Of course, you can change the numerical descriptors above to whatever you like. Just add this to your theme style sheet and you're all set.
Let us know if that helps.
genesteinberg
Member
Posted 1 year ago #
It does, though I'd prefer to see this as something in your preference settings. :)
Peace,
Gene
artallthetime
Member
Posted 8 months ago #
Thank you for posting this answer Scott! Works perfectly and was just what I was looking for.