• I’ve tried the code in my Child theme’s style.css

    .entry-content a, .entry-summary a, .page-content a, .comment-content a, .pingback .comment-body > a {
    border-bottom: none;
    }

    It’s not working.There is still underlines on hyperlink. I’m running on localhost.
    I tried to remove underline links in post. Someone help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • This worked for me. Put it in the style.css. Let me know if it works in the post.

    .entry-content a,
    .widget a ,
    .entry-summary a,
    .taxonomy-description a,
    .comment-content a,
    .pingback .comment-body > a {
    	box-shadow: none;
    	border-bottom: 0px solid #007acc !important;
    	}

    Hi

    Use below css

    .comment-body a {
        box-shadow: none;
    }

    The code from Ripple worked for me. Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘how to remove underline on hyperlinks in twenty sixteen’ is closed to new replies.