Hello,
This was the code off of your test page:
PHP Code:
<table align="center" width="100%">
<tr>
<td valign="top" width="20%">
<table border="0" cellpadding="0" cellspacing="0" align="center" width="100%">
<tr>
<td width="20"><img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideleft.jpg" width="20" height="35"></td>
<td background="http://www.iguanacenter.com/images/blockimg/aeditsidemiddle.jpg"></td>
<td width="20"><img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideright.jpg" width="20" height="35"></td>
</tr>
<tr>
<td background="http://www.iguanacenter.com/images/blockimg/asideleft.jpg"></td>
<td>
<!--Start Text Here-->
yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda
yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda yadda
<!-- /End Text Here-->
</td>
<td background="http://www.iguanacenter.com/images/blockimg/asideright.jpg"></td>
</tr>
<tr>
<td width="20"><img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideleftbottom.jpg" width="20" height="35"></td>
<td background="http://www.iguanacenter.com/images/blockimg/aeditsidemiddlebottom.jpg"></td>
<td width="20"><img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsiderightbottom.jpg" width="20" height="35"></td>
</tr>
</table>
<br />
This is the code that worked:
PHP Code:
<table align="center">
<tr>
<td valign="top">
<table border="0" cellpadding="0" cellspacing="0" align="center">
<tr>
<td>
<img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideleft.jpg" width="20" height="35"></td>
<td background="http://www.iguanacenter.com/images/blockimg/aeditsidemiddle.jpg"></td>
<td>
<img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideright.jpg" width="20" height="35"></td>
</tr>
<tr>
<td background="http://www.iguanacenter.com/images/blockimg/asideleft.jpg"></td>
<td>
<!--Start Text Here-->
sad
ssssssssasdasd
<!-- /End Text Here-->
</td>
<td background="http://www.iguanacenter.com/images/blockimg/asideright.jpg"></td>
</tr>
<tr>
<td>
<img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsideleftbottom.jpg" width="20" height="35"></td>
<td background="http://www.iguanacenter.com/images/blockimg/aeditsidemiddlebottom.jpg"></td>
<td>
<img border="0" src="http://www.iguanacenter.com/images/blockimg/aeditsiderightbottom.jpg" width="20" height="35"></td>
</tr>
</table>
<br /><br />
</td>
</tr>
</table>
You added code to the first one, and that was the one I had problems with. The second one, from vBulletin.org, worked fine.The first set of code you see is the first codebit on your test page.
btw, thanks for the code in general. I didn't realize I ommitted the 2 tags.