Jonathan Chen
asked 10 years ago

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
DominicStaff
answered 10 years ago

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 !

Danny Deffenbaugh
replied 10 years ago

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?

Wilfred
answered 10 years ago

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>  
Powered by DW Question & Answer Pro