Tables

[qt_table 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>Service</td>
            <td>Price Per Hour</td>
            <td>Project Based Hour Price</td>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>Design & Build</td>
            <td>$60</td>
            <td>$50</td>
        </tr>
        <tr>
            <td>Landscaping</td>
            <td>$45</td>
            <td>$40</td>
        </tr>
        <tr>
            <td>Electrical</td>
            <td>$55</td>
            <td>$50</td>
        </tr>
    </tbody>
</table>
Was this page helpful?