By dabellator on
I've created a textfield using cck, then I'm calling it out in a seperate template that i've created. for some reason, the field is the length its been designated (500) but only one row. I've called it using this command:
<?php print drupal_render($form['field_instruct']); ?>
if i use firebug i can see it has these attributes:
<input id="edit-field-instruct-0-value" class="form-text text" type="text" value="" size="500" name="field_instruct[0][value]"/>
Any idea how I can make multiple rows so its not one line that extends forever? thanks guys...
-JB
Comments
Sounds like you want a
Sounds like you want a textarea instead of textfield.
Aha! nevets, come to my
Aha! nevets, come to my rescue again? fortunately this one was an easy fix, thanks for being there...
-JB