• Resolved wrigley82

    (@wrigley82)


    Hello. I am using WordPress Twenty Seventeen and Elementor Pro. For my site I have set that hyperlinks are to be highlighted and underlined and blue. I have a particular page on my website (see below) that I would like to remove the blue highlighting and underlining of text for my hyperlinks. I have attempted to use the following CSS code without success.

    .entry-content a {
    border-bottom: 0; !important
    }

    I have entered this into every section of that page. If I am in Elementor it gets rid of the blue text and underline but when I go to the preview the text returns to blue and underline.

    Any help would be greatly appreciated.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Looks like your CSS is not syntactically correct there. It should read

    .entry-content a {
    border-bottom: 0 !important ;
    }

    You may also need to create or already have a ‘child theme’ of your theme so you can do a custom CSS stylesheet and override everything on your site. Check that out.

    Thread Starter wrigley82

    (@wrigley82)

    Thank you for looking at that code. I do not know very much about HTML or CSS code. Is there a good plug-in you would recommend for creating and implementing a child theme?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Turn Off Link Highlighting and Underlining on a single page’ is closed to new replies.