
May 9th, 2008, 03:01 AM
|
|
Contributing User
|
|
Join Date: Jan 2005
Posts: 38
Time spent in forums: 14 h 36 m 21 sec
Reputation Power: 0
|
|
|
PHP5 - Smarty Form centering
Hello, I use smarty templates and I have a form that, for the life of me, can not figure out how to adjust the aliegnment of the set and reset buttons.
The form presently looks like this:
http://www.russianhosts.com/contact.us.php
Here is the loader code (php code)
Code:
$form = array(
array('type' => 'separator', 'text' => 'Contact us'),
array('type' => 'textarea', 'name' => 'message', 'cols'=>50, 'rows'=>20, 'prelabel' => 'message:'),
array('type' => 'reset', 'value' => 'Reset form'),
array('type' => 'submit', 'value' => 'Send')
);
Here is the template code
Code:
<div>{$confirmation}</div>
<div>{if !$confirmation}{html_form loop=$tpl_formdata tableparams=$tpl_formdata_table formparams=$tpl_formdata_form}{/if}</div>
|