Disabled visited Hyperlink text/link color

  • 7 February 2015
  • 1 reply
  • 4 views

Hi,

Basic question. I want my hyperlink to retain the same formatting after click as before. Do I need to add this in CSS or is there a way to set this in the tool directly.

Thanks,

Debbie


1 reply

Userlevel 2

Hi Debbie,

You can customize the colour of visited links for browsers that support this using a few lines of CSS. Just paste this onto your page as a Stylesheet and just replace ‘red’ with the colour name or hex value you want:

a:visited { <br />
  color: red !important; <br />
} <br /> </style>```   
I hope that helps!

Reply