QUOTE (SeasideSurfCo @ Aug 22 2009, 01:07 PM)

I cannot seem to find out how i can change the following:
Generally you see something like this:
Cart Total: $238.95 Items: 4
I would like to see it like this:
Cart Total: $238.95 Items: 4
I want the numerical parts to appear in red so they stick out from the rest of the text. I cant seem to find the part that controls the colors for this particular. Support request said something about putting it in a tag or something but i havent a clue what that means, i use dreamweaver cs3 and i know how to use it i just dont speak the language.
I believe that you are going to have to make some adjustments to your css declarations in your default css file...the location of the file can vary based upon your setup. You simply download it, adjust it and then upload it to overwrite the older version.
***Always keep a backup of the original in case things go bad!!!
Here is a snippet of the code (from my css file) that I believe you are looking for.
CODE
table.cart { width:100%; border:0;}
td.cart-header-img { text-align:right; vertical-align:middle; }
tr.cart-header th { font-weight: bold; text-align: left; border-bottom: 1px solid #ccc; }
tr.cart-item td { padding-top: 10px; padding-bottom: 10px; border-bottom: 1px solid #ccc; vertical-align:top; }
div.cart-prod-name { margin: 0 0 10px; }
span.cart-part-number { font-weight: bold; color: #666633; }
td.cart-item-image { width:10px }
td.cart-item-price, td.cart-item-total { width:10px; white-space: nowrap; text-align:right; padding-right: 10px }
td.cart-item-options, td.cart-item-quantity { width:60px }
div.cart-item-name { margin: 0 0 10px; }
tr.cart-footer td { border-top: 1px solid #ccc; border-bottom: 1px solid #ccc; padding: 10px 0; }
td.cart-subtotal-label, td.cart-discounts-label, td.cart-shipping-label, td.cart-total-label { font-weight: bold; text-align:right; padding-right: 3px; }
td.cart-subtotal, td.cart-discounts, td.cart-shipping, td.cart-total { font-weight: bold; text-align:right }
I am going to poke around and see if I can give you more detailed instructions...
PS Can you specify where you want the red text to be...? Is it in the pre-checkout cart - or during checkout? Posting your domain name might help answer this question.