Howdy, Stranger!

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

How do I stop links form being bolded?

Sorry if this is a stupid question. I'm a first time twine user, and I can't find any information on this. I'm making a game in Harlowe. I want the linked text to be the same weight as the passage text, but twine keeps making it bold. How do I tell it to stop? I've tried putting:

tw-link {
font-style: normal;
}

in the CSS, but it doesn't seem to do anything.

Comments

  • The font-style property handles sloping (i.e. italic and oblique). You want the one that handles weight, namely font-weight. For example:
    tw-link {
    	font-weight: normal;
    }
    
  • Thanks! That worked like a charm!
Sign In or Register to comment.