• Hi there I am new to WordPress programming I just want to know how to change the anchor text color from blue to black and removing the underline. Let me share an example I have an anchor text “airtel tv app” as shown in the link whenever I move the cursor on anchor text it changes color how to make anchor text feel like an ordinary text. So user cannot differentiate between normal text and linked text. I hope I was able to make people understand my query.

Viewing 1 replies (of 1 total)
  • Hi there,

    you can use this CSS:

    a, a:focus, a:hover, a:visited {
      color: #000;
      text-decoration: none;
    }

    Please note: users not being able to distinguish a link from common text is not good for Accessibility.

Viewing 1 replies (of 1 total)

The topic ‘Anchor Text Issue’ is closed to new replies.