G'day Matt
Yeah, the file you need goes by the catchy name:
/includes/runoverride/checkoutpayment/paypalxc_checkoutpayment_paymentmodule.phpLooking at about line 45:
Code:
<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '1'); ?></td>
<td class="main" colspan="3"><b><?php echo $selection[$i]['module']; ?></b></td>
<td class="main" align="right">
<?php
if (sizeof($selection) > 1 || $ec_enabled ) {
Change the '1' in the first line of the block to the height you want, eg:
Code:
<td width="10"><?php echo tep_draw_separator('pixel_trans.gif', '10', '25'); ?></td>
<td class="main" colspan="3"><b><?php echo $selection[$i]['module']; ?></b></td>
<td class="main" align="right">
<?php
if (sizeof($selection) > 1 || $ec_enabled ) {
This is what a cre_63ats payment page looks like with the height value of '25':

Simon