Hi,

I'm using Zen Cart v1.3.9b & I noticed after installing the latest MSRP Mod, All The Prices (i.e. Save price, Retail & Your price) came up the same color as everything else. When according to the code that I was instructed to enter into my stylesheet.css was supposed to change the colors (i.e. Save price gray, Retail black & Your price red). Below are the instructions for the code placement.
2. In includes/templates/your_template/css/stylesheet.css, or includes/templates/classic/css/stylesheet.css

Add:

.smalltext1 {
font-family:Tahoma;
text-align: center;
color:#000000;
font-weight:bold;
}

.save {
font-family:Tahoma;
text-align: center;
color:#636466;
font-weight:bold;
}

.norm {
font-family:Tahoma;
text-align: center;
color:#981B1E;
font-weight:bold;
}
I was racking my brain trying to figure out haw to solve this. I mean everything else works fine. Finally I figured it out by adding the code to the includes/templates/your_template/css/product_info.css as well or even instead.

I hope that this helps anyone else...