remove line break between form label and input cakephp

Marcus26

New Member
the form helper in cakephp generates form elements like this usually:\[code\]<div class="input text"> <label for="Firstname">Firstname</label> <input type="text" id="Firstname" value="" class="test" name="Firstname"/></div>\[/code\]but is it possible to remove the line break that is between the \[code\]<label>\[/code\] and the \[code\]<input>\[/code\] to have something like this:\[code\]<div class="input text"> <label for="Firstname">Firstname</label> <input type="text" id="Firstname" value="" class="test" name="Firstname"/></div>\[/code\]Any idea please?Thank you
 
Back
Top