[Solved] Set width of form in Questions and Answers module
Posted: Sat Aug 02, 2008 1:02 pm
In Calguy's Questions module there is this code for the question template:
Where can I change the width of the {$input_question} field. It makes no difference if I set the table or cells width, so obviously something outside my ken is happening.
Thanks
Andrew
Code: Select all
<!-- Start Questions Form Template -->
{if isset($error)}<strong><font color="red">{$error}</font></strong>{/if}
{if isset($message)}<strong><font color="blue">{$message}</font></strong>{/if}
{$formstart}
<table>
<tr><td >{$prompt_author} </td><td>{$input_author}</td>
<tr ><td >{$prompt_question}</td><td>{$input_question}</td>
{if isset($image_captcha)}
<tr><td >{$prompt_captcha}</td><td>{$image_captcha}</td>
<tr><td > </td><td>{$input_captcha}</td>
{/if}
<tr><td> </td><td>{$submit}</td>
</table>
{$formend}
<!-- End Questions Form Template -->
Thanks
Andrew