• Resolved lealeo

    (@lealeo)


    I’m just wondering if it’s possible to change the link colour from grey to blue within the text of all pages? I’ve been told they are a bit difficult to see as they are. Many thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • Theme Author Ben Sibley

    (@bensibley)

    Sure, I’d recommend using this CSS snippet to alter the link color in posts/pages:

    .post-content a {
      color: blue;
    }

    I’m using the keyword blue, but you can change that to a hexadecimal color code to use a specific shade of blue.

    Thread Starter lealeo

    (@lealeo)

    Thanks for this, Ben. I’ve pasted the snippet into Additional CSS and published it, but the link colour doesn’t change. Is there something I’m missing?

    Theme Author Ben Sibley

    (@bensibley)

    Whoops, wrong class name – sorry!

    This CSS will work instead:

    .entry-content a {
      color: blue;
    }
    Thread Starter lealeo

    (@lealeo)

    Yay, perfect!! Thank you ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing link colour within the text of pages?’ is closed to new replies.