Print Page | Close Window

font color on "get_topic.asp"

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=5952
Printed Date: 03 April 2026 at 9:48am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: font color on "get_topic.asp"
Posted By: Lucent
Subject: font color on "get_topic.asp"
Date Posted: 24 September 2003 at 1:36pm

Hi, how do I change the font color of << Prev Topic | Next Topic >> on get_topic.asp without affecting other links' color?

 




Replies:
Posted By: God_Struth
Date Posted: 24 September 2003 at 5:32pm
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.




Posted By: Lucent
Date Posted: 25 September 2003 at 8:36am
This works, but it also change the group of icon navigations at the very top. ( I tried to change the link color="#fffff" white) so the very top links just blinds into the bg which also is white.


Posted By: God_Struth
Date Posted: 25 September 2003 at 8:57am
I simply used "nav" as an example, you should call it something other than what the main forum classes are called.



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net