boudey Posted October 19, 2006 Posted October 19, 2006 Hi, I need to increase size of fileds in contact form. Where do I do that in that code? <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="main"><?php echo ENTRY_NAME; ?></td> </tr> <tr> <td class="main"><?php echo tep_draw_input_field('name'); ?></td> </tr> <tr> <td class="main"><?php echo ENTRY_EMAIL; ?></td> </tr> <tr> <td class="main"><?php echo tep_draw_input_field('email'); ?></td> </tr> <tr> <td class="main"><?php echo ENTRY_ENQUIRY; ?></td> </tr> <tr> <td><?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15); ?></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td> </tr> <tr> <td><table border="0" width="100%" cellspacing="1" cellpadding="2" class="infoBox"> <tr class="infoBoxContents"> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> <td align="right"><?php echo tep_image_submit('button_continue.gif', IMAGE_BUTTON_CONTINUE); ?></td> <td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td> </tr> </table></td> </tr> </table></td> I tried to change the values ,50, 15 but it didn t change anything. Thanks much.
boudey Posted October 19, 2006 Author Posted October 19, 2006 I forgot to point out that I want to change the length fo the Name and email fields. Thanks.
pyramids Posted October 19, 2006 Posted October 19, 2006 <td class="main"><?php echo tep_draw_input_field('name','',$parameters = 'size="30"'); ?></td> </tr> <tr> <td class="main"><?php echo ENTRY_EMAIL; ?></td> </tr> <tr> <td class="main"><?php echo tep_draw_input_field('email','',$parameters = 'size="30"'); ?></td>
boudey Posted October 19, 2006 Author Posted October 19, 2006 Woaw!!! It works. Thanks Pyramids. Whish I could give you cookie points, but there are none in this forum. Bye Michael
Recommended Posts
Archived
This topic is now archived and is closed to further replies.