Hide underline from links in posts
-
My posts show underlines for image links. How do I remove the links using CSS?
I have these in my CSS but ALL underlines still show:
a:link {
color: black;
text-decoration: none;
}a:hover {
color: red;
text-decoration: none;
}a:-webkit-any-link {
text-decoration: none;
text-decoration-line: none;
}.single-post .entry-content a {
text-decoration: none;
}The blog I need help with is: (visible only to logged in users)
-
Hello,
To remove underline from links in the single post/page, please add this class to Custom CSS:
.single-post .entry-content a { border-bottom: none; }Thank you,
– Djordje
- The topic ‘Hide underline from links in posts’ is closed to new replies.