It looks like you're new here. If you want to get involved, click one of these buttons!
I wanted a method of setting the visited links. So I tried Stylish but that didn't have an option for links. Is there such an option?
Yes, there is!
You can simpily add :visited to the end of an links element.
So for example if I had an 'link element' and I wanted it to change color to red when visitited my code would look like
a.hyperlink { color: black; } a.hyperlink:visited { color: red; }
a.hyperlink { color: black; }
a.hyperlink:visited { color: red; }
a:visited,a:visited * { color: red !important;}
Comments
Yes, there is!
You can simpily add :visited to the end of an links element.
So for example if I had an 'link element' and I wanted it to change color to red when visitited my code would look like
https://www.w3schools.com/CSSref/css_selectors.asp