Hi:
I added the recommended code to my CSS and it didn’t change the color. Also, you can’t see the underline until you click on the word.
Here’s the code I used that did not change the hyperlink to underline and a different color:
.single .entry-content p a {
color: #295912;
text-decoration: underline;
}
Please advise.
Thanks. 🙂
hi! Thank you so much for your help, currently I am using this in my css
.single-content a {
color: #FE6161 !important;
}a, a:hover, a:visited, a:active, a:focus, .single .entry-content a, .single .entry-content a:hover, .single .entry-content a:visited, .single .entry-content a:active, .single .entry-content a:focus, .page .entry-content a, .page .entry-content a:hover, .page .entry-content a:visited, .page .entry-content a:active, .page .entry-content a:focus {
color: #FE6161;
}
Is there a way to have all of the links in the body of posts and pages be this color, but not the post titles?
Hi @empowerlifteats,
You can try something like this:
.entry-content a,
.entry-meta a {
color: #fe6161;
}
.single-content a {
color: #fe6161;
}
.entry-title a {
color: #2b2b2b;
}
Hope that helps.