• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

How would I accomplish something like this with html/tables?

Nocturnal

Lifer
---------------------- ----------------- ------------------------
| | | | |
| | | | |
| | | | |
| | | | |
| ----------------- | |
| | |
| | |
| | |
| | |
| | |
| | |
----------------------- |-----------------------

Sorry for the ugly ASCII but that's the only way I can draw it up right now. Thanks in advance.
 
Are you trying to make a table where some of the cells are "merged"? You can use the rowspan and colspan attributes to do that.

<table border="1">
<tr>
<td colspan="2">This row spans 2 columns</td>
</tr>
<tr>
<td>Col 1</td>
<td>Col 2</td>
</tr>
</table>
 
Back
Top