Howdy, Stranger!

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

Styling (click:) links same as other links.

I've made a change to the styling of links using the following CSS:
tw-link
{
	font-weight: normal;
}

This does not seem to change the styling of links created using macros in the (click:) family, however. Is there a different selector that I can use to style those? I'm using Twine 2.0.4 and Harlowe.

Comments

  • edited May 2015
    Try this:
    .link {
    	font-weight: normal;
    }
    
    If you want to style "click" links specifically (and not other types of links with the "link" class), then:
    .enchantment-link {
    	font-weight: normal;
    }
    
    Btw, if you’re in Chrome (or any browser with a "Developer" mode of some sort) you can right-click on an onscreen element and choose "Inspect Element" to see how the element is wrapped in HTML.
Sign In or Register to comment.