• THE POSTS USED TO DISPLAY A BLUE (STANDARD COLOR) FOR THE HYPERLINK, BUT RECENTLY THE TEXT IS BLACK LIKE THE BODY TEXT AND JUST BLENDS IN. NOW WAY TO DIFFERENTIATE IT AS A HYPERLINK. MIGHT HAVE SOMETHING TO DO WITH GUTENBERG?

    NEEDS FIXING IMMEDIATELY. PLEASE HELP!

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • I have the same problem too. I had to manually underline the hyperlink. I want to change the color, too. Someone, please help!

    My site is here: https://invisibleasia.com/2019/09/11/the-ancient-dynasties-of-china-through-chinese-historical-dramas/

    Hi,
    Actually, I solved the problem by changing the CSS style.

    You can add the following codes to change the color back to blue (and underline)
    Note that my code changes only the color of hyperlinks in the paragraphs.
    If you want to change all hyperlinks color, just get rid of “p” in the first paragraph of the code.

    If changing the CSS style doesn’t work, try disabling your plugin one by one.
    Mine didn’t work initially and it turned out one of my plugins was the cause.
    Alternatively, you can also try putting ” !important” after the code.
    For example: text-decoration: underline !important;

    I hope it helps!
    ========================================

    /* unvisited link */
    p a:link {
    text-decoration: underline;
    color: #0084b1;
    }

    /* visited link */
    a:visited {
    color: purple;
    }

    /* mouse over link */
    a:hover {
    color: tomato;
    }

    ============================================
    If you want to change the style of the links on your homepage, you can try adding (and put in underline or the color of your choice)

    ============================================
    .home_posts a {
    color: tomato;
    }

    • This reply was modified 5 years, 2 months ago by Su_Ramen.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How to change color of hyperlink in post?’ is closed to new replies.