Change width of column in table
Basic table structure that can be used for all display temaplates using razor is:
<table class="table">
<thead>
</thead>
<tbody>
<tr>
<td width=35%>R: @Model.Rlink257.Label</td>
<td>
@foreach(var growthmedia in @Model.Rlink257) {
<p>@growthmedia.Name</p>
}
</td>
</tr>
</tbody>
</table>
This basic structure can be copied and pasted in the Dynamic code section.
Extra explanation on the code:
-
<td width=35%> indicates that the cell width is 35% of the full width.