diff --git a/payment/uc_credit/uc_credit.module b/payment/uc_credit/uc_credit.module
index a492259..2d9eb71 100644
--- a/payment/uc_credit/uc_credit.module
+++ b/payment/uc_credit/uc_credit.module
@@ -293,7 +293,10 @@ function uc_credit_uc_payment_method() {
   $cc_types = array('visa', 'mastercard', 'discover', 'amex');
   foreach ($cc_types as $type) {
     if (variable_get('uc_credit_' . $type, TRUE)) {
-      $title .= ' <img class="uc-credit-cctype uc-credit-cctype-' . $type . '" src="' . $path . '/images/' . $type . '.gif" style="position: relative; top: 5px;" />';
+      $title .= ' ' . theme('image', array(
+        'path' => drupal_get_path('module', 'uc_credit') . '/images/' . $type . '.gif',
+        'attributes' => array('class' => array('uc-credit-cctype', 'uc-credit-cctype-' . $type)),
+      ));
     }
   }
   $methods['credit'] = array(
diff --git a/payment/uc_payment/uc_payment.css b/payment/uc_payment/uc_payment.css
index 37f62bf..40191b0 100644
--- a/payment/uc_payment/uc_payment.css
+++ b/payment/uc_payment/uc_payment.css
@@ -3,6 +3,15 @@
  * Styles for uc_payment module.
  */
 
+.uc-credit-cctype {
+  vertical-align: middle;
+  margin-bottom: 3px;
+}
+
+#paypal-includes {
+  font-weight: bold;
+}
+
 #payment-details {
   border-top: solid 1px #bbb;
   clear: both;
diff --git a/payment/uc_paypal/uc_paypal.module b/payment/uc_paypal/uc_paypal.module
index b312e57..9edbacb 100644
--- a/payment/uc_paypal/uc_paypal.module
+++ b/payment/uc_paypal/uc_paypal.module
@@ -131,16 +131,17 @@ function uc_paypal_uc_payment_gateway() {
  * Implements hook_uc_payment_method().
  */
 function uc_paypal_uc_payment_method() {
-  $path = base_path() . drupal_get_path('module', 'uc_credit');
-  $title1 = '<img src="https://www.paypal.com/en_US/i/logo/PayPal_mark_37x23.gif" style="position: relative; top: 5px; margin-right: 4px;" />'
-         . t('PayPal - pay without sharing your financial information.');
-  $title2 = '<br /><span id="paypal-includes" style="padding-left: 5.5em;">'
-          . t('<b>Includes:</b>');
+  $title1 = '<img src="https://www.paypal.com/en_US/i/logo/PayPal_mark_37x23.gif" class="uc-credit-cctype" />'
+         . ' ' . t('PayPal - pay without sharing your financial information.');
+  $title2 = '<br /><span id="paypal-includes">' . t('Includes:');
   $cc_types = array('visa', 'mastercard', 'discover', 'amex', 'echeck');
   foreach ($cc_types as $type) {
-    $title2 .= ' <img src="' . $path . '/images/' . $type . '.gif" style="position: relative; top: 5px;" />';
+    $title2 .= ' ' . theme('image', array(
+      'path' => drupal_get_path('module', 'uc_credit') . '/images/' . $type . '.gif',
+      'attributes' => array('class' => array('uc-credit-cctype', 'uc-credit-cctype-' . $type)),
+    ));
   }
-  $title2 .= ' <img src="https://www.paypal.com/en_US/i/logo/PayPal_mark_37x23.gif" style="position: relative; top: 5px; margin-right: 4px;" /></span>';
+  $title2 .= ' <img src="https://www.paypal.com/en_US/i/logo/PayPal_mark_37x23.gif" class="uc-credit-cctype" /></span>';
 
   $methods[] = array(
     'id' => 'paypal_wps',
