MyBB Community Forums

Full Version: Adding a third (right side) column
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I have been searching the forum, and have found out to add another column, you insert the following code into the portal file in the Admin CP:
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%">
<tr>
<td class="thead"><strong>Box header goes here</strong></td>
</tr>
<tr>
<td class="trow1" align="center">
<span class="smalltext">
You content goes here
</span>
</td>
</tr>
</table>
</td></tr></table>
<br />

The problem is, I do not know where to insert the code so that it displays as a right column. My portal code from the ADMIN CP is:

<html>
<head>
<title>$settings[bbname]</title>
$headerinclude
</head>
<body>
$header
<table width="$theme[tablewidth]" cellspacing="0" cellpadding="$theme[tablespace]" border="0" align="center">
<tr><td valign="top" width="200">
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%" bgcolor="ffffff">
<tr>
<td class="thead"><strong>Sponsored Links</strong></td>
</tr>
</table>
<center>
<?php include "/forums/poll/poll.php"; ?>
</center>
</td></tr></table>
<br />
$pms
$stats
$whosonline
$latestthreads
<table cellspacing="0" cellpadding="0" border="0" width="100%">
<tr>
<td class="tborder">
<table border="0" cellspacing="$theme[borderwidth]" cellpadding="$theme[tablespace]" width="100%" bgcolor="ffffff">
<tr>
<td class="thead"><strong>Sponsored Links</strong></td>
</tr>
</table>
<center>
<!--ADSENSE CODE REMOVED FOR PRIVACY REASONS--!>
<p>
</center>
</td></tr></table>
<br />
</td>
<td class="trow">&nbsp;</td>
<td width="*" valign="top">
$welcome
$announcements
</td>
</tr>
</table>
$footer
</body>
</html>

Could someone please tell me where exactly to insert the code? Thanks!
Find
<td class="trow">&nbsp;</td>
<td width="*" valign="top">
$welcome
$announcements
</td>
after add
<td class="trow">&nbsp;</td>
<td valign="top" width="200">
new box goes here
</td>
and place the box where it says to
Thanks!