I want to make a table. Is this possible?
Yes!
First, you'll need to start with a Content Block. Go to 'Add Elements' to create the Content Block, then click on the 'Source' button in the Content field, to enter Source view.
Then as an example, to create the table displayed on this site"
http://mofuse-btns.prohost.mobi/table&t=lfpolmkrfktet06d87eeprjf07
Paste in the following code:
<table cellpadding="0" width="100%">
<tbody>
<tr width="33%">
<td>Day</td>
<td>Pt Judith</td>
<td>Block Island</td>
</tr>
<tr width="33%">
<td>Monday</td>
<td>7:15, 8:15, 10:00</td>
<td>7:15, 8:15, 10:00</td>
</tr>
<tr width="33%">
<td>Tuesday</td>
<td>7:15, 8:15, 10:00</td>
<td>7:15, 8:15, 10:00</td>
</tr>
<tr>
<td>Wednesday</td>
<td>7:15, 8:15, 10:00</td>
<td>7:15, 8:15, 10:00</td>
</tr>
</tbody>
</table>
To Apply Custom CSS:
$this table {
border-collapse:collapse;
border-spacing:0;
cellspacing: 0;
}
$this table, th, td {
0 Comments