Link to home
Start Free TrialLog in
Avatar of onyourmark
onyourmark

asked on

change link colors in wordpress

Hi. Can anyone tell me how to change the link colors in wordpress? Mine are showing up in gray but I want them to be blue here: http://sentimentmining.net/publications/
Thank you.
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

You need to go to Appearance | Editor and load styles.css and then edit the link colors in the CSS file.  
Avatar of onyourmark
onyourmark

ASKER

Thank you.
It currently looks like this, what would I change?

/*
Theme Name: Twenty Eleven Child
Description: Child theme for the Twenty Eleven theme
Author: Your name here
Template: twentyeleven
*/

@import url("../twentyeleven/style.css");

/* This will override site title color even on the dark theme */
#site-title a {
    color: #009900 !important;
}

/* This will override the changed link color */
#site-title a:focus,
#site-title a:hover,
#site-title a:active {
    color: #009900 !important;
}
How much do you know about CSS is and how it is used?
I have not used it in about the past 6 years and I forget almost all of it. Thanks.
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks.