Dec 3rd, 2012, 1:49 PM
(This post was last modified: Dec 3rd, 2012, 1:51 PM by dethompsOWU.)
One of my users recently switched to Google Chrome as her default browser and noticed this morning that, when she tries to view a selection of submissions as HTML/printer-friendly as "One submission per page", it's running all of the submissions together.
In Firefox, on the other hand, it appears to work properly.
Looking at the code for the export, I'm seeing that the page breaks are handled with a CSS style:
Applied to a <br> tag between submissions:
Firefox (and other browsers) seem to work properly with this code but, for some reason, Chrome does not.
Does anyone know of a workaround for Chrome (such as an additional/alternate CSS style, and how to incorporate it into FormTools) to accomplish this?
In Firefox, on the other hand, it appears to work properly.
Looking at the code for the export, I'm seeing that the page breaks are handled with a CSS style:
Code:
.page_break { page-break-after: always; }
Applied to a <br> tag between submissions:
Code:
<br class="page_break" />
Firefox (and other browsers) seem to work properly with this code but, for some reason, Chrome does not.
Does anyone know of a workaround for Chrome (such as an additional/alternate CSS style, and how to incorporate it into FormTools) to accomplish this?