MyBB Community Forums

Full Version: Portal
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I know this has been asked a dozen or more and I can not find my answer! Smile

How can I add a navigation menu,boxes on the left side and
have only boxes in the middle and right side?

TIA

again, I am sorry to ask a repeated thread..I will be most grateful if someone
tell how, just one more time.
This is some code to put in your 'portal' template that will give you 3 columns:

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%" cellspacing="0" cellpadding="{$theme['tablespace']}" border="0" align="center">
<tr><td valign="top" width="20%">
COLUMN 1
</td>
<td valign="top" width="50%">
COLUMN 2
</td>
<td valign="top" width="20%">
COLUMN 3
</td>
</tr>
</table>
{$footer}
</body>
</html>

Then you can out the variables that are usually in the portal in whatever column you want them to show up in.
Thanks Matt..
IT worked! I was just could not think any more and I needed a
quick solution/answer! Smile

Once again...THANKS