Line up header and repeat entry in list view

Line up header and repeat entry in list view

by Barbara Scott -
Number of replies: 2

In list view, when inputting header text into the header area and corresponding fields into the repeated entry area, how do I get them to line up so that the relevant fields list underneath the appropriate text? 

Barbara

Average of ratings: -
In reply to Barbara Scott

Re: Line up header and repeat entry in list view

by Itamar Tzadok -
When you work on the template you need to disable editor and then add an HTML table divided between the sections:

header section

<table><tbody>
<tr>
<th>header1</th>
<th>header2</th>
</tr>

body section

<tr>
<td>||Field1||</td>
<td>||Field2||</td>
</tr>


footer section

</tbody></table>


smile
Average of ratings: Useful (1)