Site logo

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

Viewing posts 1–4 of 4

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;
}

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;
}
This archived topic is closed to new replies.