Hello, I clearly need to learn some css now that I am in the forms world. In the meantime, I would like to ask for some help in formatting my form. Below I have the native form and the output after submitted. What I would like to do is shift the "amount" to the right so it's not so tight with the description and use some of the white space that "Branch" and "GL Account" are using up. Also, would like to align the total "Amount" to line up under the amount column. If you could suggest the css to accomplish this, I would appreciate it.
Question
Question
Answer
I have attached some CSS which addresses the q2 field which is a total.
#q2{ display: inline-block; width:49%; float: right; }
This takes the total go to the right.
Also see this answers post for further help
https://answers.laserfiche.com/questions/128569/Using-CSS-to-get-two-fields-on-the-same-line
The Laserfiche Help files are very good for custom CSS also.
Replies
In the table, you can set the % of each field, this will resize each field in the table.
You can then align the field to the right respectively.
In order to right-align the field I believe you will need to use the CSS & Javascript section. I am no expert in CSS but I use w3Schools.com for help. Here is what I could find for that.
You can replace the ".right" with the class or id of the field you are looking to effect. On the CSS/JS page a preview of your form is shown containing the id and class for every field on your form.