Links not obvious when written inside blog paragraph
-
Hi, I’m having an issue with my links being visible and obvious once I write a paragraph in my blog (and a word in there has a link that I want people to click).
I saw another’s user post with the same issue that was resolved with this code global css code:
body .entry-content ul li a{
color: #888484;
text-decoration: underline;
but for some reason once I apply it in only works when I have a link inside a “list”, but not on the normal paragraph format.
The attached pic shows difference and how I want the links to look
Attachments:
You must be
logged in to view attached files.
Hello,
Try this code:
body .entry-content p a{
color: #888484;
text-decoration: underline;
}
or this one:
body .entry-content a{
color: #888484;
text-decoration: underline;
}
if none is workable, please provide the page URL with this text
Best Regards
The second code option seems to be working, thank you so much 🙂
You are welcome! If you have any questions please feel free to contact us.
Best Regards
The topic ‘Links not obvious when written inside blog paragraph’ is closed to new replies.