- If you want to use the first code:
Find the following line in inc_header.asp (approx. line 279):
		"<body" & strTmpPageBGImageURL & " bgColor=""" & strPageBGColor & """ text=""" & strDefaultFontColor & """ link=""" & strLinkColor & """ aLink=""" & strActiveLinkColor & """ vLink=""" & strVisitedLinkColor & """>" & vbNewLine & _
and replace it with the following code:
		"<body" & strTmpPageBGImageURL & " bgproperties=""fixed"" bgColor=""" & strPageBGColor & """ text=""" & strDefaultFontColor & """ link=""" & strLinkColor & """ aLink=""" & strActiveLinkColor & """ vLink=""" & strVisitedLinkColor & """>" & vbNewLine & _
- If you'd like to use the second code you've posted:
Find the following code in inc_header.asp (approx. line 263-265):
		"<style type=""text/css"">" & vbNewLine & _
		"<!--" & vbNewLine & _
		"a:link    {color:" & strLinkColor & ";text-decoration:" & strLinkTextDecoration & "}" & vbNewLine & _
and replace it with the following code:
		"<style type=""text/css"">" & vbNewLine & _
		"<!--" & vbNewLine & _
                "BODY { background-image: url(backgif.gif); background-attachment: fixed; }" & vbNewLine & _
		"a:link    {color:" & strLinkColor & ";text-decoration:" & strLinkTextDecoration & "}" & vbNewLine & _
Hope that helps.