For Longevity, there is none due to the theme not having any shortcodes. Was there something in particular that you were referring to?
As for theme documentation, you can find setup tutorials HERE
Thread Starter
adam64
(@adam64)
I need a table in the style of the theme. Like you have on the tutorial page.
I can replicate it by hand but I thought maybe there is a shortcode to use for it and save time.
Thanks anyway for your response.
Adam.
The table style I use for my tutorials has a certain structure to it, but you can use this as a guideline:
<table>
<thead>
<tr>
<th>Heading 1</th>
<th>Heading 2</th>
<th>Heading 3</th>
</tr>
</thead>
<tbody>
<tr>
<td>content</td>
<td>content</td>
<td>content</td>
</tr>
</tbody>
</table>
Then just apply your own styling to the <thead> <tr> <td> etc. You can also find many tutorials for creating alternating table row background colours (striped tables). For the headings background (mine is blue), you apply a background colour to the <th> element.