Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

How to set custom width for signature field

Guest
Feb 07, 2017 Feb 07, 2017

Hi,

We are generating pdf application forms using html and then the pdf is sent to users for their signature using Adobe Echosign API .

we tried adding in html following html code to adjust the signature field length to fit inside given Div. It didnt help out.

<table cellpadding="0" cellspacing="0" width="250" height="50" ><tr><td><em style="font-size:21pt; width:250px; display:block;">{{Sig_es_:signer1:signature}}</em></td></tr></table>

Untitled.png

How do we set the custom width for the signature field?

Thanks in Advance for any help or solution

1.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Deleted User
Feb 10, 2017 Feb 10, 2017

Got it. 

<style type="text/css" >

.sign_style{

                        display:block;

                        width:300px;

                        font-size:23px;                       

                      }

</style>

<input type="text" class="sign_style" name="Sig_es_:signer1:signature" />

Translate
Guest
Feb 10, 2017 Feb 10, 2017

Got it. 

<style type="text/css" >

.sign_style{

                        display:block;

                        width:300px;

                        font-size:23px;                       

                      }

</style>

<input type="text" class="sign_style" name="Sig_es_:signer1:signature" />

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Feb 11, 2017 Feb 11, 2017
LATEST

Hi paragr72672201​,

Great! We are glad that you were able to find the text tag and thank you for sharing it for the other user.

Regards,

Aadesh

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines