Ok, I'm now making the final tweaks to my site before it goes live.

The problem I'm having can be seen below. I'm trying to align the sub-total value to the right. So the words 'Sub-total:' remain aligned to the left, while the value is aligned to the right.



Below is the code I'm using (in the shopping cart sidebox).

Code:
$content .= '<table><tr><td><span class="cartBoxSubTotal">' . BOX_SHOPPING_CART_SUBTOTAL . '</span></td><td><span class="cartBoxTotal">' . $currencies->format($_SESSION['cart']->show_total()) . '</span></td></tr></table>';
	$content .= '<br />';
I'm using the text-align parameter in my CSS for both of the above classes.

Anyone able to help with this one?