-1

I need to remove all underlines from the all links at once, is this possible?

Underline issue

Here is the template

HeyUtsho
  • 17
  • 1

4 Answers4

1

This should do it for you...

<style> a { text-decoration: none; } </style>

Daniel
  • 21
  • 2
0

add this to your csss

*{
  text-decoration: none;
 }
Prince
  • 1
  • 1
-1
text-decoration:none; a tag in css

text-decoration:none;
-1

I suggest my solution because in this case it only deletes links within the table.

  tr td ul li a {
            text-decoration: none;
        }
ntx2
  • 31
  • 1
  • 5