vote up 1 vote down star

Hi,

The Form helper in cakephp

  echo $form->input('Firstname', array('class'=>'test','name'=>'Firstname','type'=>'text'));

generates me like the following

   <div class="input text">
      <label for="Firstname">Frrstname</label>
      <input type="text" id="Firstname" value="" class="test" name="Firstname"/>
   </div>

is it possible to add a Break between label and input within the DIV .. If so how .. please suggest

flag

34% accept rate

3 Answers

vote up 6 vote down check

The manual is your friend: http://book.cakephp.org/view/191/options-before-options-between-options-separator-a

link|flag
vote up 0 vote down
 echo $form->input('Firstname', array( 'between'=>'<br />','class'=>'test','name'=>'Firstname','type'=>'text'));
link|flag
vote up 1 vote down

I would suggest not adding the break.

Just use css:

label{display:block}

would achieve the same result.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.