Is there a way to change the default link color in Twine Sugarcube? Currently, I have it where I’m writing @@.colorlink;[[Link text]]@@
for every single link.
Needless to say, it gets very old very fast.
Is there any CSS code that will change the default blue-ish link color to something more palatable?
(Edit: Sorry if this is in the wrong place! This is my first time on Intfiction.)
Hi there!
You can more easily to so by targetting either the a
or .link-internal
element in your stylesheet
a {color: red}
a.link-internal {color: red}
.link-internal {color:red}
(a
alone will target all links, both going to a new passage or a different website, .link-internal
only to other passages)
This section of the Documentation might be useful btw
1 Like
Oh my gosh. Thank you so much! I simply could not find anything about this–the documentation also helps. Thanks again!