Here's the HTML in the index.php for that module
Be prepared, it's messy.
Code:
<div align="center">
<TABLE summary="table" cellspacing="0" cellpadding="0" width="100%">
<form action="modules.php?name=fastbanner&file=banner" name="fastbanner" method="post">
<TR>
<TD align="center">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="20%" aign="top">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header"><? echo ""._ANLEI.""; ?>
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
<td width="5%"></td>
<td width="75%">
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="5" class="header"><? echo ""._SELBAN.""; ?>
</TD>
</TR>
<TR>
<TD class="main" colspan="5" align="center">
<table cellspacing="0" cellpadding="0" width="484" summary="Banner Table">
<tr>
<td rowspan="2">[img]modules/fastbanner/Yscala1.gif[/img]</td>
<td>[img]modules/fastbanner/Xscala1.gif[/img]</td>
</tr>
<tr>
<td valign="top">[img]modules/fastbanner/banner/ban01.png[/img]</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header">
<? echo ""._PICKYOUR.""; ?>
</TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="titletext" value="<? echo ""._YOURSITE.""; ?>" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="titlecolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>[img]modules/fastbanner/colortable.gif[/img]
</td>
<td>
<input name="titlex" type="text" value="54" size="3" maxsize="3"><? echo ""._XCOOR.""; ?>
<input name="titley" type="text" value="10" size="3" maxsize="2"><? echo ""._YCOOR.""; ?>
</td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<TABLE summary="table" cellspacing="0" cellpadding="0" border="0" width="100%" align="center">
<TR>
<TD class="border">
<TABLE summary="table" border="0" cellspacing="1" cellpadding="3" width="100%">
<TR>
<TD colspan="1" class="header"><? echo ""._PICKTAG.""; ?></TD>
</TR>
<TR>
<TD class="main" colspan="4">
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="100"><input name="tagtext" value="<? echo ""._THISIS.""; ?>" size="43" maxsize="80"></td><td><INPUT type="text" size="7" name="tagcolor" maxlength="7" value="#009900"></td>
</tr>
<tr>
<td>[img]modules/fastbanner/colortable.gif[/img]
</td>
<td><input name="tagx" type="text" value="54" size="3" maxsize="3"><? echo ""._XCOOR.""; ?>
<input name="tagy" type="text" value="30" size="3" maxsize="2"><? echo ""._YCOOR.""; ?></td>
</tr>
</table>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</td>
</tr>
</table>
Basically we need to look at that and make sure no tags are left open. They all need to eventually be closed with a matching HTML closing tag. like this
Code:
<table>
<td>
<tr>
</tr>
</td>
</table>
That is an example of properly closing your HTML tags.
mikem