Zen Cart Logo

Site Sale Issues

Locked

Views: 1,986

Results 1 to 2 of 2
This thread is locked. New replies are disabled.
27 Jul 2007, 11:55
#1
adds avatar

adds

Zen Follower

Join Date:
Nov 2005
Posts:
255
Plugin Contributions:
0

Site Sale Issues

Hi,
Can anyone tell me why my site is doing the following:

£475.00 £59.99
Save: £415.01 off

The £475.00 & the £59.99 have a line across them? I'm sure the line should only be across the first price not the sale price as well?

Can anyone help me to resolve this please?

Thanks,
Adam.

27 Jul 2007, 15:38
#2
brandtim avatar

brandtim

Zen Follower

Join Date:
Apr 2006
Posts:
250
Plugin Contributions:
0

Re: Site Sale Issues

The problem is here:

includes/templates/TS-TechStore/css/stylesheet.css

line 457:

.normalprice, .productSpecialPrice, .productSpecialPriceSale {
  text-decoration: line-through;
  color: #0058be;
}

should be:

.normalprice, productSpecialPriceSale {
  text-decoration: line-through;
  color: #0058be;
}

BrandTim