zelezulu Posted June 7, 2004 Share Posted June 7, 2004 How can I increase the size of the text box? for example, increase the text box size of the street address in create_account.php? I know the text box was draw under the following code: <td class="main"><?php echo ENTRY_STREET_ADDRESS; ?></td> <td class="main"><?php echo tep_draw_input_field('street_address') . ' ' . (tep_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_STREET_ADDRESS_TEXT . '</span>': ''); ?></td> and tep_draw_input_field seems to be accept parameter to declare the size, but I could get the syntax right. can anyone help? Link to comment Share on other sites More sharing options...
bluepony Posted June 7, 2004 Share Posted June 7, 2004 The size is passed as the third parameter: <?php echo tep_draw_input_field('street_address','','size="80"') I'd rather be flying! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.