I would like to line-up the postal code input field and the drop down menu for reason to be under the respective labels (like the rest of the form).
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"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?> </fieldset> <br class="clearBoth" />thanksCode:<label class="inputLabel" for="action"><?php echo ENTRY_ACTION; ?></label> <select name="action"> <?php echo '<option value="' . ENTRY_ACTION_REFUND . '">' . ENTRY_ACTION_REFUND . '</option>' ; ?> <?php echo '<option value="' . ENTRY_ACTION_REPLACE . '">' . ENTRY_ACTION_REPLACE . '</option>' ;?> </select> </fieldset> <br class="clearBoth" />


Reply With Quote
