• Resolved johnzoro

    (@johnzoro)


    What css do i need to add to GP to make the link colours of WP Show Posts Red?

    at the moment they are blue

    what i would like is a normal red for links and visited links and maybe a darker one for active links?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Tom

    (@edge22)

    Hi there,

    It should inherit the link colors of your theme.

    You could try:

    .wp-show-posts a,
    .wp-show-posts a:visited {
        color: #000;
    }
    
    .wp-show-posts a:hover {
        color: #222;
    }

    You’ll need to update the colors of course 🙂

    Thread Starter johnzoro

    (@johnzoro)

    thanks tom

    Plugin Author Tom

    (@edge22)

    You’re welcome 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Text Link Colours’ is closed to new replies.