Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Packing Slip Text Size


hylton

Recommended Posts

Posted

Hi there

 

I've been looking in the forum for days trying to find an answer to this. How can I increase the text size for the SHIP TO address on the packing slip?

 

We fold these and use them in clear pockets for address labels but the text is far to small.

 

Please somebody show me the exact place to change it.

 

Many thanks

 

Hylton

Posted
Hi there

 

I've been looking in the forum for days trying to find an answer to this. How can I increase the text size for the SHIP TO address on the packing slip?

 

We fold these and use them in clear pockets for address labels but the text is far to small.

 

Please somebody show me the exact place to change it.

 

Many thanks

 

Hylton

 

admin/packingslip.php

 

find

 

 

<td class="main"><b><?php echo ENTRY_SHIP_TO; ?></b></td>

</tr>

<tr>

<td class="main"><?php echo tep_address_format($order->delivery['format_id'], $order->delivery, 1, '', '<br>'); ?>

</td>

</tr>

</table></td>

 

 

 

Modification to the line that says

<td class="main"><b><?php echo ENTRY_SHIP_TO; ?></b></td>

 

Will increase SHIP TO

 

example

 

<td class="main"><H2><b><?php echo ENTRY_SHIP_TO; ?></b></H2></td>

 

 

 

Modification to the line that says

<td class="main"><?php echo tep_address_format($order->delivery['format_id'], $order->delivery, 1, '', '<br>'); ?>

 

Will increase the address under the SHIP TO

 

example

<td class="main"><H2><?php echo tep_address_format($order->delivery['format_id'], $order->delivery, 1, '', '</H2><br>'); ?>

My Contributions

 

Henry Smith

Posted

Hi Henry

 

Many thanks for that. I've been searching for that for ages. I manage to sort most problems but this one was giving me grief!

 

Kindest Regards

 

Hylton

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...