How to change link color?
Alex_J
11 Oct 2017, 14:05Hi guys, I'm wondering If it is possible to give passage link and section link defferent color?
e.g: this is a passage link and this is a section link
Currently both passage and section link has same color.
![](https://i.imgur.com/WATF57bb.jpg)
Padrinos
13 Oct 2017, 05:23I'm pretty sure you can change with CSS, but since squiffy doesn't recognize it you have to do it after you publish it. There will be a fike called style.css Open that and you can alter the looks of links, borders, ect.
Alex_J
13 Oct 2017, 07:48I know, It is possible to change link color by editing this.
a.squiffy-link
{
text-decoration: underline;
color: blue;
cursor: pointer;
}
Inside the style.css file but the problem is, it will change color of both section link and passage link to blue.
But I want section link to have red color and passage link to have blue color. ( maybe that is possible by modifying javascript in story.js?)
![](https://i.imgur.com/FOIjtApb.png)
K.V.
13 Oct 2017, 08:06style.css
//a.squiffy-link
//{
// text-decoration: underline;
// color: Blue;
// cursor: pointer;
//}
a.squiffy-link.link-section
{
text-decoration: underline;
color: Green;
cursor: pointer;
}
a.squiffy-link.link-passage
{
text-decoration: underline;
color: Red;
cursor: pointer;
}
Alex_J
13 Oct 2017, 08:13Thanks K.V, You're amazing :D
![](https://i.imgur.com/FOIjtApb.png)
K.V.
13 Oct 2017, 08:36You're welcome! (I just recently learned this stuff. I was the opposite of amazing when it came to CSS about 4 months ago.)
Here's a bonus prize:
a.squiffy-link.link-section:hover
{
text-decoration: underline;
color: Blue;
cursor: pointer;
}
a.squiffy-link.link-passage:hover
{
text-decoration: underline;
color: Purple;
cursor: pointer;
}
Alex_J
13 Oct 2017, 08:56I already knew about the hover effect :). That will surely help those who have no idea about hover effect ;)
![](https://i.imgur.com/FOIjtApb.png)
K.V.
13 Oct 2017, 09:11I thought that was probably the case, considering how close you were already, but it was the only extra bonus I could come up with. (Ha-ha-ha!)
![](https://i.imgur.com/WATF57bb.jpg)
Padrinos
13 Oct 2017, 15:19Thanks K.V. I am learning lots here from everyone
Alex_J
13 Oct 2017, 16:16Now we can switch section link into stylish buttons if we want ofc.
![](https://i.imgur.com/FOIjtApb.png)
K.V.
13 Oct 2017, 17:51Thanks K.V.
No problem!
I am learning lots here from everyone
Me too! Every single day!
Isn't it great?