Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Contact Form Fields


PLUGGER

Recommended Posts

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

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"' )

Link to comment
Share on other sites

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...