Quote Originally Posted by jettrue View Post
I adjusted that on my own site. To do that, open up includes/templates/YOUR_TEMPLATE/templates/tpl_modules_create_account.php.

Find this line:
Code:
<label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE; ?></label>
and directly after it add:

Code:
<br />
Hi, have been trying to fix this on and off for months, then finally cracked it- I just added a clearBoth between the label and the field, so change this:

PHP Code:
<label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE?></label>
<?php echo zen_draw_input_field('postcode'''zen_set_field_length(TABLE_ADDRESS_BOOK'entry_postcode''40') . ' id="postcode"') . (zen_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="alert">' ENTRY_POST_CODE_TEXT '</span>'''); ?>
<br class="clearBoth" />
to this
PHP Code:
<label class="inputLabel" for="postcode"><?php echo ENTRY_POST_CODE?></label>
<br class="clearBoth" />
<?php echo zen_draw_input_field('postcode'''zen_set_field_length(TABLE_ADDRESS_BOOK'entry_postcode''40') . ' id="postcode"') . (zen_not_null(ENTRY_POST_CODE_TEXT) ? '<span class="alert">' ENTRY_POST_CODE_TEXT '</span>'''); ?>
<br class="clearBoth" />
Hope this helps!