how can I change the color of my titles? Magenta kills the post!

  • Unknown's avatar

    I need to be able to control the color of the TITLE of my posts

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, you can change the bulk of the magenta linked text with the following. Edit the color codes as desired. I included the hover color rule as well.

    a {
    color: #00ff00;
    }
    
    a:hover {
        color: #ffff00;
    }

    The site title is controlled separately, and you can use the following to set the color of it, and the hover color.

    .site-title a {
        color: #ffff00;
    }
    .site-title a:hover {
        color: #00ff00;
    }
  • The topic ‘how can I change the color of my titles? Magenta kills the post!’ is closed to new replies.