Learn how to use tables in the campus CMS.
You can insert a table in any WYSIWYG field.
When you select a table in the WYSIWYG, a number of buttons appear:
From left to right these are:
When you first insert a table, it will not have a style applied to it.
Apply the campuswide style:
<table class="styled">
<tbody>
<tr>
<th>Heading</th>
<th>Heading</th>
<th>Heading</th>
</tr>
<tr class="odd">
<td>Data 1</td>
<td>Data 2</td>
<td>Data 3</td>
</tr>
<tr class="even">
<td>Data 4</td>
<td>Data 5</td>
<td>Data 6</td>
</tr>
</tbody>
</table>
If you want to use alternate row shading, this still needs to be done via HTML. Just add class="odd" and class="even" to alternating rows. See the CMS kitchen sink page for more information.