Any decent joomla template must have CSS for "table".
Cassiopeia is of course one of them. Without adding anything just using your text editor in code mode, try a class .table,
or a class "table table-striped"
or a class "table table-bordered".
Your table must be well-formed, though.
Cassiopeia is of course one of them. Without adding anything just using your text editor in code mode, try a class .table,
or a class "table table-striped"
or a class "table table-bordered".
Your table must be well-formed, though.
Code:
<table class="table"><thead><tr><th scope="col">#</th><th scope="col">First</th><th scope="col">Last</th><th scope="col">Handle</th></tr></thead><tbody><tr><th scope="row">1</th><td>Mark</td><td>Otto</td><td>@mdo</td></tr><tr><th scope="row">2</th><td>Jacob</td><td>Thornton</td><td>@fat</td></tr><tr><th scope="row">3</th><td colspan="2">Larry the Bird</td><td>@twitter</td></tr></tbody></table>
Statistics: Posted by ghazal — Tue Apr 09, 2024 2:05 pm