Archived topic
I'm sure there is a way I just don't know what it is.
3 replies · Started by Maria on January 17, 2020
How can I add a color underline to my links without it being added to the nav, footer, and buttons. I only need it on the page body content. If I add this it gets added everywhere else. Not great with css.
a {
text-decoration: none;
}
a:link {
border-bottom: 1px solid #EB8239;
}
Hi there,
Try this instead:
.entry-content a:not(.buttons) {
border-bottom: 1px solid #EB8239;
}
Adding CSS: https://docs.generatepress.com/article/adding-css/
Let me know if this helps :)
Hmm didn't seem to change anything
Hi there,
its because the site is built with Elementor - try this instead:
.site-content a:not(.buttons) {
border-bottom: 1px solid #EB8239;
}