Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

shbosc

Archived
  • Posts

    2
  • Joined

  • Last visited

Profile Information

  • Real Name
    Steve H. B.

shbosc's Achievements

  1. I had the same problem and fixed it by hard coding the height and width. In the catalog/admin directory edit the file 'information_form.php' around line 94 and replace the <td class="main" width="100%"> </td> tags as follows: <td class="main" width="100%"><?php if (DESCRIPTION_EDITOR == 'true' ) { tep_draw_fckeditor('information_description[' . $languages[$i]['id'] . ']', (($languages[$i]['id'] == $languages_id) ? stripslashes ($edit[information_description]) : tep_get_information_entry($information_id, $languages[$i]['id'], 'information_description')), '800', 300); } else { echo tep_draw_textarea_field('information_description[' . $languages[$i]['id'] . ']', '', '100', '20', (($languages[$i]['id'] == $languages_id) ? stripslashes($edit[information_description]) : tep_get_information_entry($information_id, $languages[$i]['id'], 'information_description'))); } ?> </td> Hope that helps! Sb
×
×
  • Create New...