helps to change the color of like

sucre13

Moderator
Staff member
Moderator
Collaborate
Registered
Joined
Jan 19, 2019
Messages
859
Points
153

Reputation:

Help change the like color of the like button, where can I locate it in xenforo? I leave an image
1715805232135.png
That is a requirement that I set to see, you have to like but the problem is that it looks dark, where can I modify this color, thank you
 

Splicho

Synapse-Themes.cc Owner
Staff member
Moderator
Collaborate
Registered
Joined
Jan 21, 2022
Messages
839
Points
153

Reputation:

CSS:
.reactionsBar > ul.reactionSummary > a.reactionsBar-link {
    color: #xxxxx;
}

Try that. But by looking at the original code, it seems like it's getting the link color from Style Properties > Basic Colors (Which would explain the current color you see)
 

Zer01ne

Collaborate
Collaborate
Registered
Joined
Nov 25, 2022
Messages
725
Points
253

Reputation:

CSS:
.reactionsBar > ul.reactionSummary > a.reactionsBar-link {
    color: #xxxxx;
}

Try that. But by looking at the original code, it seems like it's getting the link color from Style Properties > Basic Colors (Which would explain the current color you see)
Splichoyeah, that's right it's using link color.

CSS:
a.reactionsBar-link {
    color: crimson;
}

I think this will be enough
 
Top