diff --git a/uc_product/uc_product.theme.inc b/uc_product/uc_product.theme.inc
index 1bc199a..807e00c 100644
--- a/uc_product/uc_product.theme.inc
+++ b/uc_product/uc_product.theme.inc
@@ -15,7 +15,8 @@
  */
 function theme_uc_product_model($variables) {
   $output = '<div class="product-info model">';
-  $output .= t('SKU: @sku', array('@sku' => $variables['model']));
+  $output .= '<span class="product-info-label">' . t('SKU') . ':</span> ';
+  $output .= '<span class="product-info-value">' . check_plain($variables['model']) . '</span>';
   $output .= '</div>';
 
   return $output;
@@ -118,7 +119,8 @@ function theme_uc_product_weight($variables) {
   $output = '';
   if ($amount) {
     $output = '<div ' . drupal_attributes($attributes) . '>';
-    $output .= t('Weight: !weight', array('!weight' => uc_weight_format($amount, $units)));
+    $output .= '<span class="product-info-label">' . t('Weight') . ':</span> ';
+    $output .= '<span class="product-info-value">' . uc_weight_format($amount, $units) . '</span>';
     $output .= '</div>';
   }
 
@@ -147,7 +149,11 @@ function theme_uc_product_dimensions($variables) {
   $output = '';
   if ($length || $width || $height) {
     $output = '<div class="product-info dimensions">';
-    $output .= t('Dimensions: !length × !width × !height', array('!length' => uc_length_format($length, $units), '!width' => uc_length_format($width, $units), '!height' => uc_length_format($height, $units)));
+    $output .= '<span class="product-info-label">' . t('Dimensions') . ':</span> ';
+    $output .= '<span class="product-info-value">' ;
+    $output .= uc_length_format($length, $units) . ' × ';
+    $output .= uc_length_format($width, $units) . ' × ';
+    $output .= uc_length_format($height, $units) . '</span>';
     $output .= '</div>';
   }
 
