Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Entry Enquiry


Guest

Recommended Posts

Posted

go into your catalog\contact_us.php file locate this line of code

				<td><?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15); ?></td>

change the 50,15 parameters. The first is the number of cols the 2nd is number of rows.

Posted

thats exactly what i thought, i was just changing the wrong one, i was changing the rows not the columns. duh me

Posted

The 6th argument of the tep_draw_textarea_field function accepts the parameters for the html input tag. So either you pass a style width there or a css class name for this purpose. Since currenly it only has 4 parameters make the 5th one a null string.

 

<td><?php echo tep_draw_textarea_field('enquiry', 'soft', 50, 15,'', 'parameters_or_css_class_to_pass_here'); ?></td>

Posted

Would it be much trouble for you to write that out for me i need it to be like 20 cols wide or so, I don't understand how to do that... I am really sorry for this!

 

Thanks!

Seth

Posted

Well thanks anyways, anyone else help?

 

Thanks,

Seth C.

Archived

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

×
×
  • Create New...