I have part of a form in a PHP script that was set inside of a table. I am changing things to get rid of tables. I have an echo line that is showing rows and columns. It was set at 60 columns. But that exceeded the CSS container. Do anyone have any suggestions on how to code this PHP line so it will use the CSS container.
<div class="textarea">
<?php echo tep_draw_textarea_field('comments', 'soft', '40', '5'); ?>
</div>
As you can see I already changed the columns from 60 to 40. Is there a better way to do this so i dont have to worry about different screen resolutions.
Pat
looks like an osCommerce function? You should try to look for that tep_draw_textarea_field function in the rest of the files, and determine exactly what it is doing. You could also just hard code the html and not use the function.
Bookmarks