MyBB Community Forums

Full Version: Using the portal template for a custom page
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
I've changed the code to now:

<html>
<head>
<title>{$mybb->settings[bbname]}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="200">
<tr>
<td>
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td><td>
<table width="100%" border="0">
<thead>
<tr>
<th>New Page</th>
</tr>
<tbody>
<tr>
<td><table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>Navigate</strong></td>
</tr>
<tr>
<td class="trow1"><b><a href="http://www.wearewriters.co.uk">Home<p><a href="http://www.wearewriters.co.uk/forums/games.php">Games</td>
</tr>
</table>

<br /><td>
      </tr>
</tbody>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>


(Just changed the look of the 'main content', but there's still the same problem
Try:
<html>
<head>
<title>{$mybb->settings[bbname]}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%">
<tr>
<td width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td><td>
<table width="100%" border="0">
<tr>
<th>New Page</th>
</tr>
<tr>
<td><table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>Navigate</strong></td>
</tr>
<tr>
<td class="trow1"><b><a href="http://www.wearewriters.co.uk">Home<p><a href="http://www.wearewriters.co.uk/forums/games.php">Games</td>
</tr>
</table>
<br /><td>
      </tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>

Try this
Mmm. better sizing, only its still half way down the page, rather than at the top...
Here:
<html>
<head>
<title>{$mybb->settings[bbname]}</title>
{$headerinclude}
</head>
<body>
{$header}
<table width="100%">
<tr>
<td width="200">
{$welcome}
{$pms}
{$search}
{$stats}
{$whosonline}
{$latestthreads}
</td><td valign="top">
<table width="100%" border="0">
<tr>
<th>New Page</th>
</tr>
<tr>
<td><table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>Navigate</strong></td>
</tr>
<tr>
<td class="trow1"><b><a href="http://www.wearewriters.co.uk">Home<p><a href="http://www.wearewriters.co.uk/forums/games.php">Games</td>
</tr>
</table>
<br /><td>
      </tr>
</table>
</td>
</tr>
</table>
{$footer}
</body>
</html>
Yay, that's it, thankies a million Dennis!!
No problem.
Pages: 1 2 3