Comments

1 comment

  • Aaron Gregory

    The recommended way to add a table is to use the HTML content block.  For the best results, use percentages when defining the column widths.  The following sample code will create a table with 6 evenly spaced columns (see screenshots).  For more assistance, please contact your customer success manager and schedule a best practices workshop.

    <style>
          .column {
            width:16.67%;
            border: 1px;
            border-style: dashed;
        }
    </style>
    <table width="100%">
        <tr>
          <td class="column">Column 1</td>
          <td class="column">Column 2</td>
          <td class="column">Column 3</td>
          <td class="column">Column 4</td>
          <td class="column">Column 5</td>
          <td class="column">Column 6</td>
      </tr>
    </table>

     

    Add HTML content block to composer:

    Inbox preview:

    Mobile preview:

    0
    Comment actions Permalink

Please sign in to leave a comment.