Howdy, Stranger!

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

Harlowe: Changing color of click-append links

Hello!

So I'm trying to change the color of the click-append links in my twine game. I got the regular links to change color, but the click-append ones stay the default blue. Another post mentioned something about enchantment-link, and I tried that but it didn't seem to do anything...

-Allie

Comments

  • Do you want to change the colour of all the click-append links or just one? If it's all of them, you can add this to your Story Stylesheet:
    tw-enchantment.link {
    	color: red;
    }
    
    tw-enchantment.link:hover {
    	color: orange;
    }
    
  • edited December 2016
    @brwarner is correct, for further information about the CSS selectors Harlowe itself uses to style it's markup and macro based links please read this comment.
Sign In or Register to comment.