Click to See Complete Forum and Search --> : I need This Code


crenterprises
05-05-2005, 12:28 AM
Hello All,

I need the html code for X ing out a number..suck as $49.95....now only $39.95

How would I "X" out the $49.95 ?


Thanks,
dr911

BonRouge
05-05-2005, 12:47 AM
You can put a line through text with css....oldprice {
text-decoration:line-through;
}

html<p>Was <span class="oldprice">$49.95</span>....now only $39.95</p>