Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/O Code)
 making forum links bold
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

abercrombie
Starting Member

48 Posts

Posted - 22 July 2003 :  20:55:18  Show Profile
okay i have my forum links bold but it also made the topic links inside the forums bold as well.. is there a way where i can only have the forum links bold but not the topics bolded? thanks. :)

**i tried searching before i posted this and couldn't find anything on it**

Edited by - Gremlin on 22 July 2003 21:42:06

Gremlin
General Help Moderator

New Zealand
7528 Posts

Posted - 22 July 2003 :  21:41:53  Show Profile  Visit Gremlin's Homepage
You would need to get in and change some code to do this I'm afraid. I'll move this to MODS w/out code forum, I'm sure someone will come up with a solution for you.

The easiest way is probably to undo what you've done, and simply then edit inc_header.asp and put <B> or <STRONG> tags around the forum links.

Kiwihosting.Net - The Forum Hosting Specialists
Go to Top of Page

cripto9t
Average Member

USA
881 Posts

Posted - 23 July 2003 :  08:17:18  Show Profile
Add a class

Find these lines in "inc_header.asp"

"<style type=""text/css"">" & vbNewLine & _
                 "<!--" & vbNewLine & _
                 "body {" & vbNewLine & _
                        "scrollbar-face-color:" & strPopUpTableColor & ";" & vbNewLine & _
                      "}" & vbNewLine & _
                 "a:link    {" & vbNewLine & _
                            "color:" & strLinkColor & ";" & vbNewLine & _
                            "text-decoration:" & strLinkTextDecoration & "" & vbNewLine & _
                            "}" & vbNewLine & _
		"a:visited {" & vbNewLine & _
                            "color:" & strVisitedLinkColor & ";" & vbNewLine & _
                            "text-decoration:" & strVisitedTextDecoration & "" & vbNewLine & _
                            "}" & vbNewLine & _
		"a:hover   {" & vbNewLine & _
                            "color:" & strHoverFontColor & ";" & vbNewLine & _
                            "text-decoration:" & strHoverTextDecoration & "" & vbNewLine & _
                            "}" & vbNewLine & _
		"a:active  {" & vbNewLine & _
                            "color:" & strActiveLinkColor & ";" & vbNewLine & _
                            "text-decoration:" & strActiveTextDecoration & "" & vbNewLine & _
                            "}" & vbNewLine & _


add this after that-


".whatever {" & vbNewLine & _
            "font-weight:bold;" & vbNewLine & _
           "}" & vbNewLine & _


Then do a search for "spnMessageText" in "default.asp" and add the class where ever you want bold links.
Like this-


<span class=""spnMessageText""><a href="""

add class

<span class=""spnMessageText, whatever""><a href="""

Hope this helps

    _-/Cripto9t\-_
Go to Top of Page

cripto9t
Average Member

USA
881 Posts

Posted - 23 July 2003 :  08:48:47  Show Profile
Another way (might be better )

Add this to your css


 ".whatever a:link {" & vbNewLine & _
                                   "font-weight:bold;}" & vbNewLine & _

 ".whatever a:visited {" & vbNewLine & _
                                   "font-weight:bold;}" & vbNewLine & _
 ".whatever a:hover {" & vbNewLine & _
                                   "font-weight:bold;}" & vbNewLine & _ 
".whatever a:active {" & vbNewLine & _
                                   "font-weight:bold;}" & vbNewLine & _


And find the right table(s) in "default.asp"


Response.Write	"        </tr>" & vbNewline & _
		"        <tr>" & vbNewline & _
		"          <td bgcolor=""" & strTableBorderColor & """>" & vbNewline & _
		"            <table class=""whatever"" border=""0"" width=""100%"" cellspacing=""1"" cellpadding=""4"">" & vbNewline & _
		"              <tr>" & vbNewline & _
		"                <td align=""center"" bgcolor=""" & strHeadCellColor & """ nowrap valign=""top""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>"
if Cat_ID <> "" then


might be faster

    _-/Cripto9t\-_
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.41 seconds. Powered By: Snitz Forums 2000 Version 3.4.07