Archived topic
Cannot Remove Underlined Links.
3 replies · Started by Daniel on August 29, 2022
Hi all,
Can someone please help me turn off underlined links on my page?
I have already set the "Underlinke Links" option to 'Never' but I continue to see links on my page.
Please see here
https://www.techbooks.org/tutorials http://www.techbooks.org/tutorials
https://techbooks.org/information-security-guides/
The headlines are underlined, and I cannot remove.
Hi Daniel,
You have this CSS which adds the underline:
.entry-content a:not(.button) {
box-shadow: inset 0 -1px 0 currentColor;
transition: color 100ms ease-in,box-shadow .13s ease-in-out;
}
.entry-content a:not(.button):focus, .entry-content a:not(.button):hover {
box-shadow: inset 0 0 0 currentColor,0 3px 0 currentColor;
}
Woops! I missed that part!
Thank you so much Ying!
You are welcome :)