Viewing 3 replies - 16 through 18 (of 18 total)
  • healthymc

    (@healthymc)

    Hi:

    I added the recommended code to my CSS and it didn’t change the color. Also, you can’t see the underline until you click on the word.

    Here’s the code I used that did not change the hyperlink to underline and a different color:

    .single .entry-content p a {
    color: #295912;
    text-decoration: underline;
    }

    Please advise.
    Thanks. ??

    empowerlifteats

    (@empowerlifteats)

    hi! Thank you so much for your help, currently I am using this in my css
    .single-content a {
    color: #FE6161 !important;
    }a, a:hover, a:visited, a:active, a:focus, .single .entry-content a, .single .entry-content a:hover, .single .entry-content a:visited, .single .entry-content a:active, .single .entry-content a:focus, .page .entry-content a, .page .entry-content a:hover, .page .entry-content a:visited, .page .entry-content a:active, .page .entry-content a:focus {
    color: #FE6161;
    }

    Is there a way to have all of the links in the body of posts and pages be this color, but not the post titles?

    jarektheme

    (@jarektheme)

    Hi @empowerlifteats,

    You can try something like this:

    .entry-content a,
    .entry-meta a {
        color: #fe6161;
    }
    
    .single-content a {
        color: #fe6161;
    }
    
    .entry-title a {
        color: #2b2b2b;
    }

    Hope that helps.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Change Hyperlink Color’ is closed to new replies.