Whats the HTML do you use to make highlighted text with a line through it? so if I had a price of 47.00 it would be highlighted and crossed out?
I always use this site when I'm stuck (which is often ) http://www.w3schools.com/html/html_formatting.asp The one you want is the <del> tag I think Hope this helps
Hi there, Just use the following HTML code: <s>$47.90</s> (The "s" stands for "strikethrough") dfsweb
You could use css to do this: css bit: span.linethro{ text-decoration: line-through; } html code in file bit: <p>so if I had a price of <span class="linethro">47.00</span> it would be highlighted and crossed out?</p> No with the css span tag you can make the text bigger, a different color, differnet font, placed in a box........ and on..... and on..... Its up to you.