You can add your own to the default.css file found in the includes folder, just add something similar to this:
---------------
-
a.nav {
color : #66CCFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration: none;
font-size: 10px;
font-weight: bold;
}
a.nav:hover {
color : #FF6633;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration : underline;
font-size: 10px;
font-weight: bold;
}
a.nav:visited {
color : #66CCFF;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration : none;
font-size: 10px;
font-weight: bold;
}
a.nav:visited:hover {
color : #FF6633;
font-family: Verdana, Arial, Helvetica, sans-serif;
text-decoration : underline;
font-size: 10px;
font-weight: bold;
}
----------------
Around line 590 of forum posts.asp find this line:
<a href="get_topic.asp?FID=<% = intForumID %>&TID=<% = lngTopicID %>&DIR=P" target="_self" class="
nav">
and this line:
<a href="get_topic.asp?FID=<% = intForumID %>&TID=<% = lngTopicID %>&DIR=N" target="_self" class="
nav">
---------------
Simply change the name of the class>
nav< to whatever you called it in the CSS file.