Inserting Tables

I'd like to insert a table into a page on my mobile site, how would I do this?

It's not too difficult and can be done with just a bit of HTML.

  • In a Content Block or a Content Page, click on the 'Source' button to enter Source view.
  • Copy and paste the below HTML into the page, modifying as needed:

<p>
<table border="1">
<tbody>
<tr>
<td>Example Table</td>
<td>Hours</td>
</tr>
<tr>
<td>Monday - Thursday</td>
<td>11:00am - 5:00pm</td>
</tr>
<tr>
<td>Friday</td>
<td>11:00am - 6:00pm</td>
</tr>
<tr>
<td>Saturday</td>
<td>10:00am - 5:00pm</td>
</tr>
<tr>
<td>Sunday</td>
<td>10:00am - 3:00pm</td>
</tr>
</tbody>
</table>
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>

 

The above HTML produces the following table:

Example Table Hours
Monday - Thursday 11:00am - 5:00pm
Friday 11:00am - 6:00pm
Saturday 10:00am - 5:00pm
Sunday 10:00am - 3:00pm

 

 

Have more questions? Submit a request

0 Comments

Article is closed for comments.