• Resolved Dee

    (@supinda1985)


    I’m starting a new site and would like for links to remain black but underlined (different color).

    I’ve added the following CSS which works a treat:

    .single-post .entry-content a {
    text-decoration: underline;
    text-decoration-color: blue;
    }

    However, when editing posts in Gutenberg – links are not visible, ONLY if I hover over them.

    Is the only solution to make links a different color?

    • This topic was modified 3 years, 2 months ago by Dee.
Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @supinda1985
    you can try this:
    `.single-post .entry-content a {
    position: relative;
    padding-bottom: 2px;
    color: black;
    text-decoration: none;
    }

    .single-post .entry-content a::before {
    content: “”;
    width: 100%;
    height: 1px;
    background-color: blue;
    position: absolute;
    left: 0;
    bottom: 0;
    }

    Thread Starter Dee

    (@supinda1985)

    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Links not visible in Gutenberg editor’ is closed to new replies.