I recently installed the PayPal Express payment module on my Zen Cart. The first thing I noticed was that the PayPal express checkout option was above the stores default 'Create Customer Profile' option. I want to change this so that the 'Create Customer Profile' option is the first option, with the Paypal Express option underneath. I have tracked down the relevant code (/includes/templates/mytemplate/templates/tpl_login_default.php) and have been playing with all day but can't seem to get it right... here it is:

PHP Code:
<?php if ( USE_SPLIT_LOGIN_MODE == 'True' || $ec_button_enabled) { ?>
<!--BOF PPEC split login- DO NOT REMOVE-->
<fieldset class="floatingBox back">
<legend><?php echo HEADING_NEW_CUSTOMER_SPLIT?></legend>
<?php // ** BEGIN PAYPAL EXPRESS CHECKOUT ** ?>
<?php 
if ($ec_button_enabled) { ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_INTRODUCTION_SPLIT?></div>

  <div class="center"><?php require(DIR_FS_CATALOG DIR_WS_MODULES 'payment/paypal/tpl_ec_button.php'); ?></div>
<hr />
<?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_DIVIDER?>
<?php 
?>
<?php 
// ** END PAYPAL EXPRESS CHECKOUT ** ?>
<div class="information"><?php echo TEXT_NEW_CUSTOMER_POST_INTRODUCTION_SPLIT?></div>

<?php echo zen_draw_form('create'zen_href_link(FILENAME_CREATE_ACCOUNT'''SSL')); ?>
<div class="buttonRow forward"><?php echo zen_image_submit(BUTTON_IMAGE_CREATE_ACCOUNTBUTTON_CREATE_ACCOUNT_ALT); ?></div>
</form>
</fieldset>
If anyone could help me out with this that would be great.
Thanks