Change Link Color in Template
- The topic ‘Change Link Color in Template’ is closed to new replies.
Need help? Check out our Support site, then
How can I change the color of links in CSS? Not just individual ones, but for the template.
The blog I need help with is: (visible only to logged in users)
Hi,
Do you mean for all links in posts? If so, you can use this CSS:
.post-content a {
color: #14b53f;
}
You can use this site to get the hex code for the color you like.
Let me know if you need other links.