Hi, I was wondering if there is a way to do the following: save a form to the repository with the style intact. What I mean by that is that field values will be inside boxes similar to when you submit the form (see attached image,) and the values of a table will appear as a grid. I would like to know if this is possible because especially with a table, it doesn't look very neat to have all of the values just sitting there in white space.
Update: I found an answers post that helped a lot.
https://answers.laserfiche.com/questions/65410/forms-table-cell-borders#65869
And its corresponding link
https://developer.mozilla.org/en-US/docs/Learn/CSS/Styling_boxes/Styling_tables
I gave a table the CSS class BlackRow, then added the following lines to the CSS:
.BlackRow td {border: 1px solid black;} .BlackRow td {color:black;}
This put a sort of grid around the rows of the table and also made it so that the values in the table are stored as black instead of red.