• Hello,

    I just updated the theme some time. After I did that, it’s showing underline below the links. I don’t know why it’s happening but I want to remove them.

    Please help!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,

    This issue has been fixed in our latest version or theme, please try to update the theme to the latest version 2.0.2 to fix the issue.

    Or try to add the below CSS code from the Appearance > Customize > Custom CSS, and check.

    .single .entry-content a, .page .entry a {
    text-decoration: none;
    }
    .single .entry-content a, .page .entry a:hover {
    text-decoration: none;
    }
    Thread Starter snoringdragon

    (@snoringdragon)

    Hello, I tried this but it didn’t work.
    Custom CSS seemed to have been overridden.
    I check it with inspect tool of browser.

    single-post:not(.elementor-page) .entry-content a, .page:not(.elementor-page):not(.woocommerce-page) .entry a {
    cursor: pointer;
    text-underline-offset: 3px;
    text-decoration: underline;
    text-decoration-skip-ink: all;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    Your code looked like this but crossed out.

    .single .entry-content a, .page .entry a:hover {
    text-decoration: none;
    }
    <style>
    .single .entry-content a, .page .entry a {
    text-decoration: none;
    }

    Hello,

    Try to replace the above code with this one.

    .single .entry-content a, .page .entry a {
        text-decoration: none !important;
    }
    .single .entry-content a, .page .entry a:hover {
        text-decoration: none !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Removing underline below links.’ is closed to new replies.