I never gave it much thought, but it's very rare for my links to change color to show that they have been visited. This is very easy to do, you just need to use CSS (Cascading Style Sheets) which

uses a few of.
It gets a little more complicated with

since they have a lot of defined styles, but once you know which style is used where, it's really not hard at all.
If your FAQ links are going to be in the sidebar with your category links etc, then that style is class="navbar" and on one of my sites I have them set to:
.navbar:link {color: navy;
text-decoration: none;
font-family: verdana, arial;
font-size: 9pt;
}
.navbar:visited {color: navy;
text-decoration: none;
font-family: verdana, arial;
font-size: 9pt;
}
.navbar:active {color: navy;
text-decoration: none;
font-family: verdana, arial;
font-size: 9pt;
}
.navbar:hover {color: green;
text-decoration: none;
font-family: verdana, arial;
font-size: 9pt;
}
This will change the color when you mouseover, but since the "visited" is the same as "link" and "active" it will not change color once the link has been visited or if it's the page you are on. BTW: You can see this style sheet in use at the book site in my sig.
Download the current "style.css" from your site and edit away. (You might want to back it up before you start.) Make changes and/or define new styles as you see fit. Keep in mind that unless you code your own HTML section from scratch that you will not be able to define and use your own styles... also that some styles used by

are used in more than one section, so be aware that a change in color or size might not look good on other parts of the page.
Note on the left sidebar you can add the URL and name for a link, but you can not define a different CSS class since you can not edit that part. See the left and right links and how they have different classes though? You can only do different things if you can edit all the HTML, which you can do in one section on each side. The XRamp Seal on the left is also a custom HTML section, though not using CSS.
Oh, a good teaching tool (if you have FireFox) is to get the "Web Developer Toolbar" which allows you to really check out a page by viewing: Style Sheets, ID's and Classes as used on the page and SO much more.
Get FireFoxGet Mozilla / FireFox Extensions - Web Developer is a top 5 usuallyMore info about Web Developer Extension