in includes/modules/shipping/usps.php around line 90...
find:
Code:
$this->types = array('EXPRESS' => 'Express Mail',
'FIRST CLASS' => 'First-Class Mail',
'PRIORITY' => 'Priority Mail',
'PARCEL' => 'Parcel Post',
'MEDIA' => 'Media Mail',
'BPM' => 'Bound Printed Material',
'LIBRARY' => 'Library'
);
change to:
Code:
$this->types = array('EXPRESS' => '<font color="#FF0000">Express Mail</font>',
'FIRST CLASS' => 'First-Class Mail',
'PRIORITY' => '<font color="#0000FF">Priority Mail</font>',
'PARCEL' => 'Parcel Post',
'MEDIA' => 'Media Mail',
'BPM' => 'Bound Printed Material',
'LIBRARY' => 'Library'
);
This will only change the color of the service title (Priority Mail, Express Mail) not the carrier name (U S Postal Service). Colors are changed in both the Shipping Estimator and Checkout Shipping pages.
Note: It's likely that you will see the html tags for font color show up in admin in your shipping modules configuration pages. Hope you can live with that. I did a similar bold and color scheme for some of my order status definitions.
Ron