
Originally Posted by
tony_sar
thanks.
issue is not the captcha mod .. issue seems to be with server (wampserver ) on window. Name and Email address box is not effected , but message box is .

, test done on clean install with no mod ..

open includes/templates/YOUR_template/tpl_contact_us_default.php
find the following section of code:
PHP Code:
<label for="enquiry"><?php echo ENTRY_ENQUIRY . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
<?php echo zen_draw_textarea_field('enquiry', '30', '7', '', 'id="enquiry"'); ?>
and replace with the following:
PHP Code:
<label for="enquiry"><?php echo ENTRY_ENQUIRY . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?></label>
<?php echo zen_draw_textarea_field('enquiry', '30', '7', $enquiry, 'id="enquiry"'); ?>