Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

[Harlowe 1.2.1] How do I change visited link colors to match other default link colors?

I need the links in my story to all look the same (and not indicate when they've already been selected). Does anyone know how to change visited links to match the default color for unvisited links?

Comments

  • The following example contains the two CSS selectors used to colour a markup link or a (link-goto:) macro link that references a previously visited passage, the second one is used when you hover the mouse cursor over a visited link.
    Place the code in your Story Stylesheet area and it will change the visited colours to be the same as a un-visited link.
    .visited {
    	color: #4169E1;
    }
    .visited:hover {
    	color: DeepSkyBlue;
    }
    
  • Thank you!
Sign In or Register to comment.