Cakephp 1.3 Form Alignment?
- by Sham Ali
Hi Fellwos i am new at cakephp 1.3, i am trying to create a Edit User Form with Form Helper in Cakephp 1.3.
i am unable to make a customize 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 first two input fields in single line and 3rd input field in 2nd line, i have tried it with div false, but its not working. if anybody can help me, thanks in advance