wetbirks Posted January 19, 2009 Share Posted January 19, 2009 Hi, How do I increase size of the registration form field? See http://campstandard.com/create_account.php Thanks Link to comment Share on other sites More sharing options...
roya.k Posted January 19, 2009 Share Posted January 19, 2009 in create_account.php You can replace this: <?php echo tep_draw_form('create_account', tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onSubmit="return check_form(create_account);"') . tep_draw_hidden_field('action', 'process'); ?> with this : <?php echo tep_draw_form('create_account', tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onSubmit="return check_form(create_account);" style= "width:???px; height:???px"') . tep_draw_hidden_field('action', 'process'); ?> Where (???= height & width). Open source n'est pas un échange à sens unique ... La plupart du temps un simple merci ou quelques mots d'encouragement suffisent... Link to comment Share on other sites More sharing options...
wetbirks Posted January 21, 2009 Author Share Posted January 21, 2009 in create_account.php You can replace this: <?php echo tep_draw_form('create_account', tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onSubmit="return check_form(create_account);"') . tep_draw_hidden_field('action', 'process'); ?> with this : <?php echo tep_draw_form('create_account', tep_href_link(FILENAME_CREATE_ACCOUNT, '', 'SSL'), 'post', 'onSubmit="return check_form(create_account);" style= "width:???px; height:???px"') . tep_draw_hidden_field('action', 'process'); ?> Where (???= height & width). I don't see any like the one you gave as sample. This is what they look like in my code <?php echo tep_draw_input_field('street_address') . ' ' . (tep_not_null(ENTRY_STREET_ADDRESS_TEXT) ? '<span class="inputRequirement">' . ENTRY_STREET_ADDRESS_TEXT . ' Can I insert this "width:???px; height:???px"' somewhere in this to change the length of field? Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.