You are viewing limited content. For full access, please sign in.

Question

Question

How to center signature in Laserfiche form?

asked on December 20, 2023

Hey everyone,

Quick question: I'm trying to center both the title and the button in my form. I used the CSS snippet below to center the title, but the button seems to have a mind of its own! 😅

.form-description {
  text-align: center;
}

Check out the image attached to see what I mean. How can I do it?

Big thanks in advance for your wisdom! 

0 0

Replies

replied on December 20, 2023 • Show version history

I'm assuming you are using the classic form designer. What I have found is that the Signature label assumes the field is as wide as the page and not the field. I added the Class SignField to the Signature field. Then by using this code I can define the field width and Label width and then they line up correctly

.SignField input {width:50%;} 
.SignField label {width:50%; text-align:center;}

1 0
replied on December 20, 2023

Thanks! You help me a lot! I leave the final code if someone make the same solution I want:

.SignField input {width:100%;} 
.SignField label {width:100%; text-align:center;}


 

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.