Hi does anybody know if how to change this? Right now its almost black and its hard to tell that there is a link to click. I’d like to change this color in the post to match the style selector color or another custom color? Please let me know, thank you!
2 Answers
Hi Jonathan,
To change the link color in My post, You can log in to Dashboard > Customize > Custom Code, add the following code to the “Header Code”
<style>
.single-post .entry-content a:hover {
color: #....;
}
.single-post .entry-content a {
color: #...;
}
</style>
Hope this helps !
So this worked when you actually visit a post, but not when the post shows up on the main page. How do I fix this?
Please try to use the following code, in stead of above one in Dashboard > Customize > Custom Code:
<style>
.entry-content a:hover {
color: #....;
}
.entry-content a {
color: #...;
}
</style>
Please login or Register to submit your answer