I have added css so all input fields are 18px. After submitting form and printing it, the text in the input areas reverts to small print. Why is it not printing 18px? Why can I not just set this up in my theme to work like the rest of the custom settings? Any help is greatly appreciated, thank you.
Question
Question
Replies
I guess your CSS only changed the input element text size? The element is not "input" on printed form, it's a "div".
Do I write that code the same? div {font-size:18px;}
I tried that, but as soon as the document is saved to the repository I still lose the font size in the input text. For whatever reason when I save it to the repository as a tiff the input text reverts to small print.
Is there something I need to do in my save workflow?
The code is the same. It worked for me (Forms 10.2.1, save as TIFF):
Which version of Forms do you use? Is there any other custom CSS in the form? Can you check the submitted form from instance page and see if font size is correct?
Thank you Rui! I just ensured the div css was on all the forms in the process and it was missing on a couple. This has resolved my issue. Thanks again!
What does the CSS look like that you use to change the input font text size?
input {font-size:18px;}
div {font-size:18px;}
This worked for me. Pretty simple.
Thanks Kevin. Very simple, but I could not figure it out.
How do you change input for other fields besides single lines? I have figured it out for multi-line fields, but it doesn't work for email. Also, I use div {...........} to keep the properties after submission, but again, it only works for single line fields. What would need to be added to keep the properties for multi-line, email, etc.?
Any help or guidance would be greatly appreciated.
Thanks