Posted by Jan Wiekens
2017-01-29

Hello, your script works perfectly!
I have one question.
is it possible to make some fields bigger? I have a field called "note" and that field is very short.
Is it possible to make this lager?
Posted by Tom
2017-01-30

Hi, you can format textarea (or any HTML elements) by surrounding with a div or span tag. In the following example, a textarea is surrounded by <span class="my-style"></span>
<span class="my-style">
<textarea>...</textarea>
</span>
Now you can decorate the textarea like this:
<style>
.my-style textarea {
font-size:24px;
}
</style>