MyBB Community Forums

Full Version: Creating Table
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

Could someone help me on how I would create the following table.

I'm attempting to put a table within a table but it's confusing the hell out of me.

Any help would be appreciated.

[Image: table.png]
Why nested tables are required?

<table border="0" cellspacing="15" cellpadding="15">
<tbody>
<tr>
<td align="center" colspan="2">User Welcome Box</td>
<td rowspan="3" valign="top">Latest Posts</td>
</tr>
<tr>
<td>Info Box #1</td>
<td>Info Box #2</td>
</tr>
<tr>
<td colspan="2">&nbsp;</td>
</tr>
</tbody>
</table>

will produce:

[Image: JKAMcWo.png]

Style with CSS further.
Thank you!

You're a genius! Big Grin