Forum OpenACS Q&A: Re: Res: 3 column layout possible in Survey?

Collapse
Posted by vivian Aguilar on
Hello Ryan ,
If you are using ad_form
To give another format to the forms..
On the .adp pages you have to use
for instance instead of: "<formtemplate id="form_name"></formtemplate>
You can do:
<formtemplate id="form_name">
<table>
<tr>
<td>
      <formwidget id="input_name1">
</td>
<td>
    <formwidget id="input_name1">
</td>
<td>
    <formwidget id="input_name2">
</td>
</table>
</formtemplate>
"

Other way to approach the same is to modify the
/acs-templating/resources/forms/standard.adp or create your own template for forms

I am not sure if that is what you are looking for , hope this helps