Resize formidable forms repeating field signature in html table

Formidable Forms
6 April, 2022 19:24:23
azurebijou
Topics: 1
Messages: 1
Hi,

I am using the following html code in a html Object in my template.
It is working well except that I would like to reduce the size of the signature ([401]) when it prints on the pdf. I have tried reducing the size of the field in my formidable form, but I can't make it any smaller as it will be too difficult for the user to fill out.
Is it possible to resize the signature field when using a html object?

<table>
<tbody>
<tr>
<th>Signature</th>
<th>Date</th>
</tr>
[foreach 390]
<tr>
<td>[401]</td>
<td>[402]</td>
</tr>
[/foreach 390]
</tbody>
</table>

Thank you for your help!
6 April, 2022 22:34:28
E2Pdf
Support
Topics: 7
Messages: 3188
Hi,

If you do not have any other images inside same "HTML" object you must be able just to add "width" to CSS section as:

img {
width: 100px;
}
We would really appreciate your feedback at WordPress.org!