Display text line-through automatically

102 Views Asked by At

I am working on a site and suddenly some of text shows line-through i try many properties to remove that but no luck please check and give me solution

link : http://alimamahouse.com/real_estate/ check footer and some headings

attachment of issue

3

There are 3 best solutions below

3
Javier Gonzalez On BEST ANSWER
<s cript src

it should be

<script src

thats causing the error

1
Michal Ja On

Check if the container doesn't have a css property: text-decoration: line-through; applied. Look what sets it and you are done.

4
Pedram On

Use this:

* {
    text-decoration: none!important;
}