Dennis
Dennis

Reputation: 1

H1 image link has line under it

No matter what i try, when i preview it theres no link but when i go on my actual site there is a line underneath.

<a   href="https://www.test.com/" class="image-link"><img src="as.png" alt="test" height="236" width="420"> </a>
       <p>  &zwnj;   test </p>

My css is here: https://pastebin.com/5c9dm0b0

I've looked up every tutorial on how to get rid of it, but its still there.

Any help would be appreciated.

Upvotes: 0

Views: 43

Answers (2)

Kalaikumar Thangasamy
Kalaikumar Thangasamy

Reputation: 564

There is error in your CSS file at line no 31 extra } remove that and try

a {
  text-decoration: none;
}

Upvotes: 0

Ehsan
Ehsan

Reputation: 12959

Use :

a {
  text-decoration: none!important;
}

Upvotes: 1

Related Questions