• Resolved jmg1964

    (@jmg1964)


    That aqua green is not for us. How do you change the link color from that aqua to another color?

Viewing 1 replies (of 1 total)
  • Theme Author Tim Nicholson

    (@timnicholson)

    I would use the Jetpack plugin. It has a module in it called “Custom CSS” that let’s you build a stylesheet that will override what’s in the theme.

    To change the default link color, you’d do it like this:

    a {
      color: #xxxxxx;
    }
    a:active,
    a:hover {
      color: #xxxxxx;
    }

    That will change it most places, but there is some CSS in the theme to change link colors based on the color of background being used. For example in the footer or colored sections.

Viewing 1 replies (of 1 total)
  • The topic ‘Changing Link Color’ is closed to new replies.