I am new at cakephp 1.3. I am trying to create an Edit User Form with Form Helper in Cakephp 1.3.
I am unable to customize the alignments of the form elements, for example:
echo $this->Form->create('Model', array('action' => 'edit_users','id' => 'UserForm'));
echo $this->Form->input('First Name',array('style'=>'width:100px','label'=>'First Name:'));
echo $this->Form->input('Last Name',array('style'=>'width:100px','label'=>'Last Name:'));
echo $this->Form->input('Position',array('style'=>'width:100px','label'=>'Position:'));
I want the first two input fields on a single line and the third input field on the second line. I have tried it with div false, but its not working. How can I achieve this?