Start off with the basic link colors:
Code:
a:link, #navEZPagesTOC ul li a {
color: #ffffff;
text-decoration: underline;
font-weight: bold;
}
a:visited {
color: #ffffff;
text-decoration: underline;
font-weight: bold;
}
a:hover, #navEZPagesTOC ul li a:hover, #navMain ul li a:hover, #navSupp ul li a:hover, #navCatTabs ul li a:hover {
color: #fbce50;
}
a:active {
color: #0000FF;
}
#ffffff is white, #000000 is black, #ff0000 is red, #00ff00 is green and #0000ff is blue.
Search through your stylesheet for
color:
and you will find all places where text color is defined. Many of them you will not want to change, but check out any you are not sure of and see what they control.
Some elements that are now the default white will not be specified in the stylesheet, so you will need to add them. Find things like
Code:
.sideBoxContent a {
background-color: #c69c42;
padding: 0.4em;
}
and add
color: #ffffff;
if you want to make sure they are white.
(Or try .leftBoxContent a and .rightBoxContent a.)
After each change, go back and see what is different in your site.