• HI,

    Can anyone tell me how to change the medium blue font color that is used on all the links? (Preferable by editing CSS.)

    Any help is appreciated. Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)
  • Add to your Custom CSS:

    a {
        color: rgb(136, 153, 204); // change this color with what you wish
    }
    Thread Starter officehelpinfo

    (@officehelpinfo)

    Thank you!
    That was very helpful. It did change the content links but did not change the menu links.
    Any ideas about that?

    Yes, try:

    .menu li a {
        color: rgb(204, 204, 204); // change color here
    }
    Thread Starter officehelpinfo

    (@officehelpinfo)

    Thank you Kaniamea!

    I wasn’t specific enough. This changed the links when what I actually needed was to change the ACTIVE link. However, I was able to figure out from what you gave me that the code I needed was…

    .menu li a:visited {
    	color: rgb(240,240,240);
    }

    Thanks so much for your help! I really like this theme and now it does exactly what I needed.

    Thread Starter officehelpinfo

    (@officehelpinfo)

    Lol, or maybe not.

    That also didn’t do what I thought it would. Currently the links are white but turn blue on hover and when active. I would like them to stay white but turn gold on hover and when active.

    This is what I have at the moment, however it works on hover but still shows blue on active. Any ideas?…

    .menu li a:hover {
    	color: rgb(110,88,2);
    }
    
    .menu li a:active {
    	color: rgb(110,88,2);
    }

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Change Blue Font Color in Themage’ is closed to new replies.