View Single Post
  #6  
Old 08-04-2006, 01:52 PM
 
carpeperdiem carpeperdiem is offline
 

X-Guru
  
Join Date: Jul 2006
Location: New York City, USA
Posts: 5,399
 

Default

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
__________________
xcart 4.5.4 gold+ w/x-payments 1.0.6; xcart gold 4.4.4
Reply With Quote