How to remove underline from hyperlinks
- The topic ‘How to remove underline from hyperlinks’ is closed to new replies.
Need help? Check out our Support site, then
Hello, I’m trying to remove the underline from hyperlinks. So far I have tried installing the WP Add Custom CSS plugin and added…
.entry-content a {
border-bottom: none;
}
After that did not work, I think cleared my browsers cache and my site’s cache (using the W3 Total Cache plugin) still to no avail.
Is there a proper way to do this?
The blog I need help with is: (visible only to logged in users)
Hi there,
are you on a self-hosted website? In this case you would need to ask theme questions directly in our Elmastudio theme forum.
Regarding the link style, please try the following custom CSS:
.entry-content a, .comment-text a, .textwidget a, a.read-more, .widget_moka_about p.about-text a, .widget_moka_quote p.quote-author a {
text-decoration: none !important;
}
Best, Ellen