Skip to main content

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

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