PLUGGER Posted December 23, 2009 Share Posted December 23, 2009 well after spending two days searching these forums, i must be blind or the answer just simply isnt here on the standard contact form, i would like to know where does OSC have the field sizes, i would also like to make all these fields more uniform and the same length, its more of a cosmetic reason for this... most of my customers are greek, so their usernames etc are twice as long as normal users latin names so i need the fields bigger If it don't fit - Get a bigger hammer Link to comment Share on other sites More sharing options...
mid9tblue Posted December 23, 2009 Share Posted December 23, 2009 go ahead modify contact_us.php Find lines like this one, figure out which field they are for, for this one is for enquiry: <td><?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15); ?></td> Then make ur changes and save. Link to comment Share on other sites More sharing options...
♥FWR Media Posted December 23, 2009 Share Posted December 23, 2009 Also a little bit more difficult is the standard input field .. tep_draw_input_field($name, $value = '', $parameters = '', $type = 'text', $reinsert_value = true) You would need to add a "size=x" to the parameters .. example .. tep_draw_input_field( 'my_input_field', $value = 'my_value', $parameters = 'size="16"' ) If that doesn't match what you are seeing, and it probably wont .. you don't need the $var = , so it can just be .. tep_draw_input_field( 'my_input_field', 'my_value', 'size="16"' ) Ultimate SEO Urls 5 PRO - Multi Language Modern, Powerful SEO Urls KissMT Dynamic SEO Meta & Canonical Header Tags KissER Error Handling and Debugging KissIT Image Thumbnailer Security Pro - Querystring protection against hackers ( a KISS contribution ) If you found my post useful please click the "Like This" button to the right. Please only PM me for paid work. Link to comment Share on other sites More sharing options...
PLUGGER Posted December 24, 2009 Author Share Posted December 24, 2009 awesome, thanks for that fast replies, just what i needed, now onto my create account template with these fields, thanks again guys If it don't fit - Get a bigger hammer Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.