Howdy, Stranger!

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

Preventing a links color from changing after visit (Harlowe)

I'd like to globally set the color of previously visited links to stay the same as if they'd never been visited. Does anyone know how to get that working? All I can find is this for primary:
tw-link
{
	color: #0066FF;
}

Comments

  • Harlowe assigns previously visited tw-link elements a class of visited, so try the following:
    .visited {
    	color: #4169E1;
    }
    .visited:hover {
    	color: #00bfff;
    }
    
  • Thanks! Hey just noticed this post was reformatted into a non-question format?
Sign In or Register to comment.