Thanks for reading!
I'm having trouble inserting my html_quickform code into my page template.
I've tried to set the defaultRenderer to help but no joy.
If you look here you can see it moves the next image after my code (which would be the right border of the page) to the next line:
http://pcs-alaska.com/caridad/RequestCare.php
Here is a snip of before and after the quickform coding:
<tr>
<td><img name="RequestCare_r4_c1" src="images/RequestCare_r4_c1.jpg" width="145" height="775" border="0" alt=""></td>
<td valign="top" bgcolor="#ffffff">
<?
//Load the HTML_QuickForm
require 'HTML/QuickForm.php';
require_once 'HTML/QuickForm/Renderer/Default.php';
$renderer =& $form->defaultRenderer();
$renderer->setFormTemplate(
'<form{attributes}>
<table width="500" border="0" cellpadding="5" cellspacing="5" align="left">{content}
</form></table>'
);
//form code ..
?>
<td><img name="RequestCare_r4_c3" src="images/RequestCare_r4_c3.jpg" width="145" height="775" border="0" alt=""></td>
<td><img src="images/spacer.gif" width="1" height="775" border="0" alt=""></td>
</tr>
<tr>
<td colspan="3"><img name="RequestCare_r5_c1" src="images/RequestCare_r5_c1.jpg" width="850" height="131" border="0" alt=""></td>
<td><img src="images/spacer.gif" width="1" height="131" border="0" alt=""></td>
</tr>
<tr>
<td colspan="3"><img name="RequestCare_r6_c1" src="images/RequestCare_r6_c1.jpg" width="850" height="123" border="0" alt=""></td>
<td><img src="images/spacer.gif" width="1" height="123" border="0" alt=""></td>
</tr>
</table>
TIA your any help you can provide!
Tim