+1 vote
by (180 points)
How to I get to or access the tw-story selector. I was looking and I couldn't figure it out

1 Answer

+1 vote
by (159k points)
selected by
 
Best answer

Your CSS example from your other question was...

body {
	background-color: #F5EE20;
}
tw-passage {
	color: #5B99FF;
}
tw-link {
	color: #0000FF;
}


Chapel explained that Harlowe 2,x sets it;s default background-color (and foreground color) on the tw-story element, instead of the body element. This means that the CSS you place within your project's Story Stylesheet area should look more like the following,

tw-story {
	background-color: #F5EE20;
}
tw-passage {
	color: #5B99FF;
}
tw-link {
	color: #0000FF;
}

.. or even like the following if you want the foreground color to effect the whole of the story instead of just where the passage contents is displayed.

tw-story {
	background-color: #F5EE20;
	color: #5B99FF;
}
tw-link {
	color: #0000FF;
}

 

by (180 points)
Ah. I understand now. Thanks. I have been looking for an answer to this question forever. I really appreciate it. :)
...