Tables

There are 2 styles of tables, which you can use for example a price listTable default style

[table cols="Service,Price Per Hour, Project Based Hour Price" data="
Design & Build, $60, $50,
Plastering, $45, $40,
Electrical, $55, $50,
Plumbing, $45, $40"]

Table boxed style

[table style="boxed" cols="Service,Price Per Hour, Project Based Hour Price" data="
Design & Build, $60, $50,
Plastering, $45, $40,
Electrical, $55, $50,
Plumbing, $45, $40"]

The table shortcode can only contain plain text. If you want to use html in your table please add the tables but with html inside the “Custom HTML” widget:

<table class="qt-table default">
    <thead>
        <tr>
            <td> Item </td>
            <td> Detail</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td> Item 1 </td>
            <td> Detail 1 </td>
        </tr>
        <tr>
            <td> Item 2 </td>
            <td> Detail 2</td>
        </tr>
        <tr>
            <td> Item 3 </td>
            <td> Detail 3 </td>
        </tr>
    </tbody>
</table>
Was this page helpful?