You're welcome. The changes you seek are in the stylesheet.css, but I'll make them unhidden for you.
Depending upon what color you want the active links, you can adjust them here:
Code:
a:link, #navEZPagesTOC ul li a {
color: #3300FF;
text-decoration: none;
}
However, that won't affect the category box or visited links. For the visited links, you'll see it's code just below the above code block. Also, hover color is just below the prior.
To play with the category font colors, you'll have to scroll further down the stylesheet.css to:
Code:
/* categories box parent and child categories */
A.category-top, A.category-top:visited {
color: #008000;
text-decoration: none;
}
A.category-links, A.category-links:visited {
color: #004080;
text-decoration: none;
}
A.category-subs, A.category-products, A.category-subs:visited, A.category-products:visited {
color: #FF0000;
text-decoration: none;
}
If you want hover effects in the category box, no problem either. You can manipulate that block of code to render as all other links by additional declarations. Let me know if you'd like too, once you chosen the overall text colors.
Speaking of color, you can experiment with hex values here.