Archived topic
Link underline removing foobox image lightbox
3 replies · Started by Tuula on August 11, 2021
Hi,
I have found this kind of CSS thanks to you.
.entry-content a {
border-bottom: 3px solid #2BB7B2;
}
.addtoany_share_save_container.addtoany_content_bottom a {
border-bottom: none;
}
It is just fine but now I have underlining also below the pictures because of lightboxes.
How can I remove those underinings.
Here is the excample site:
https://tietostartti.fi/sovellukset/google-driven-uusi-varmistuspalvelu-helpottaa-kuvien-jakamista/
Hi there,
try changing this CSS:
.entry-content a {
border-bottom: 3px solid #2BB7B2;
}
to:
.entry-content p a {
border-bottom: 3px solid #2BB7B2;
}
Hi David,
It works! Thank you so much for your help!
You're welcome