Table

Posted in: Newspaper
Post count: 19

What is the best way to add a table in a post with your theme?

Thanks

Post count: 9544

As with most themes, always best to use modern HTML to simply create a table, basic CSS3/HTML5 code.

Best to avoid funky shortcodes or plugins that create arbitrary styles as they won’t move to future themes/content layouts.

I usually use a table class of ‘table’ which is also used with bootstrap and most/many themes have some default style for that

e.g.,

<table class="table">
<thead>
<tr>
<th>Month</th>
<th>Savings</th>
</tr>
</thead>
<tfoot>
<tr>
<td>Sum</td>
<td>$180</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>January</td>
<td>$100</td>
</tr>
<tr>
<td>February</td>
<td>$80</td>
</tr>
</tbody>
</table>

I don’t work here, but that’s how we do it on our sites 🙂

Post count: 19

Tanks a lot! 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
The forum ‘Newspaper’ is closed to new topics and replies.