[Support request] I'm sure there is a way I just don't know what it is.

Home Forums Support [Support request] I'm sure there is a way I just don't know what it is.

Home Forums Support I'm sure there is a way I just don't know what it is.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1135530
    Maria

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

    #1135633
    Leo
    Staff
    Customer Support

    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 🙂

    #1136548
    Maria

    Hmm didn’t seem to change anything

    #1136709
    David
    Staff
    Customer Support

    Hi there,

    its because the site is built with Elementor – try this instead:

    .site-content a:not(.buttons) {
        border-bottom: 1px solid #EB8239;
    }
Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.