MyBB Community Forums

Full Version: Custom Pages
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
<html>
<head>
<title>{$mybb->settings[bbname]}</title>
{$headerinclude}
</head>
<body>
{$header}
<table border="0" cellspacing="1" cellpadding="4" class="tborder">
<tr>
<td class="thead"><strong>Testimonials</strong></td>
</tr>
<tr>
<td class="tcat"><strong>Statements from our members.</strong></td>
</tr>
<tr>
<td class="trow1" valign="top">
TESTIMONIAL
</td>
</tr>
<tr>
<td class="trow1" valign="top">
CONTACT FORM
</td>
</tr>
</table>
{$footer}
</body>
</html>

Here is my HTML file that I use to post Testimonials.
The footer is showing above the Testimonial thing...
See the image:
[attachment=15337]

What I need to change to put the footer under the Testimonials??
Thanks.
Try replacing this :

<tr>
<td class="trow1" valign="top">
CONTACT FORM
</td>
</tr>
</table>
{$footer}

with this :

<tr>
<td class="trow1" valign="top">
CONTACT FORM
</td>
</tr>
<tr>
<td>{$footer}</td>
</tr>
</table>
See what I got...
I do not want the blue part there.
[Image: semttuloam.png]

@ EDIT I have edited your way and Its is working now.
Thanks.