Sorry..
I was thinking you wanted
class="ProductDetailsTitle"
or
.ProductDetailsTitle in the CSS file....
In this case, change this line of code from:
Code:
<td valign="middle" height="25">{if $usertype eq "A"}{$v.class}{else}{$v.classtext|default:$v.class}{/if}</td>
to:
Code:
<td class="ProductVariantTitle" valign="middle" height="25">{if $usertype eq "A"}{$v.class}{else}{$v.classtext|default:$v.class}{/if}</td>
then in your skin1/skin1.css - add this anywhere...
Code:
.ProductVariantTitle { color: #FF00CC; text-decoration: line-through; font-weight: bold; font-size: 14px; }
Obviously, change the CSS to match what you really want it to look like. This particular code will look pretty nasty there...
if you are not proficient in CSS editing, no worries. there are countless sites on the web with everything you need to know. You only need to know how to search for the answer...
hope this helps.
Jeremy