Archived topic
Removing Decoration On All Links
7 replies · Started by Simon on February 17, 2021
I'm sorry, this is a real beginner's question but I'm looking to remove bold and underline from all links, sitewide.
I tried this but I think I'm missing something...
a {
text-decoration: none;
}
Hi Simon,
Try this:
a {
font-weight: normal;
text-decoration: none;
}
But this CSS selector is very basic, it could be easily overridden by other CSS if there's one, so it might not work for all the links :)
Thank you Ying, that's worked for the bold. Is there any way to remove underline too? I thought it was already included in text-decoration: none; but obviously not! :-)
Can you link me to the specific page in question?
Hi Leo, it's sidewide but here's the latest post:
Looking to remove underline from posts and pages.
Hi there,
You have this CSS on your Appearance > Customize > Additional CSS
.entry-content a:hover {
text-decoration: underline;
}
Remove this CSS so your links don't have underline on hover. :)
Thank you Elvin! :-)
No problem. :D