replied on October 22, 2015
I wonder if it has anything to do with @media print CSS options. I would recommend you try opening the form in Chrome and use the developer tools to preview the document as it is printed rather than how it appears regularly. I'm not sure if you can do this with other browsers, but in Chrome you can:
- Open your form, fill in, etc... just don't submit it yet.
- Hit F12 to open the Developer Tools.
- Click on the Developer Toolbar and press Esc to open the Drawer.
- Go to the Emulation tab, then click on the Media option to the left.
- Check the "CSS Media" checkbox, and set the dropdown to "print"
This should let you preview your webpage, live, as it would be printed (or when saved to Laserfiche). From there, you can use the Inspector tool to examine the HTML and find the related styles that you need to modify (hopefully you're already pretty good at this if you've highly customized the original form).
You will probably have to add some CSS to your section along the lines of:
@media print{
/* Add your print-formatting CSS here:*/
.blah input{
font-weight:bold!important;
/*... etc, etc;*/
}
}