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

 All Forums
 Help Groups for Snitz Forums 2000 Users
 Help: MOD Implementation
 Site Integration - header/footer problems
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

Pertinax
Starting Member

23 Posts

Posted - 08 September 2007 :  08:31:48  Show Profile
I'm using 3.4.06.
I downloaded Site Integration and started making the changes, however
for changes to file - inc_header.asp, I can't find the line
"<a name=""top""></a><font face=""" & strDefaultFontFace & """>" & vbNewLine & _
vbNewLine & _
.
There are several lines which have some of the same content, but nothing exactly the same.

Similarly, for changes to file - inc_footer.asp, I can't find the line (lines ?)
"</table>" & vbNewLine & _
"</font>" & vbNewLine & _


Can anyone help, please ?

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 08 September 2007 :  10:31:43  Show Profile  Send ruirib a Yahoo! Message
At line 276, inc_header.asp, you have:

"<a name=""top""></a>" & vbNewLine & _
		vbNewLine & _

Replace that by:

"<a name=""top""></a>" & vbNewLine
if strSiteIntegEnabled = "1" then
  response.write "<table width=""100%"" border="""
	if strSiteBorder = "1" then
		response.write "1"
	else
		response.write "0"
	end if
	response.write """ cellspacing=""0"" cellpadding=""0"">" & vbNewLine
  if strSiteHeader = "1" then
    response.write "  <tr>" & vbNewLine & _
    "    <td"
    if strSiteLeft = "1" or strSiteRight = "1" then
      if strSiteLeft = "1" and strSiteRight = "1" then
        Response.write " colspan=""3"""
      else
		Response.write " colspan=""2"""
      end if
    end if
    response.write ">"
    %><!--#include file="inc_site_header.asp"--><%
    response.write "</td>" & vbNewLine & _
    "  </tr>" & vbNewLine
  end if
  response.write "  <tr>" & vbNewLine & _
  "    <td valign=""top"">" & vbNewLine
  if strSiteLeft = "1" then
    %><!--#include file="inc_site_left.asp"--><%
    response.write "</td>" & vbNewLine & _
    "  <td valign=""top"">" & vbNewLine
  end if
end if
response.write vbNewLine & _


For inc_footer.asp, find

Response.Write	"  </tr>" & vbNewLine & _
		"</table>" & vbNewLine & _
		"</body>" & vbNewLine & _
		"</html>" & vbNewLine

Replace it by

Response.Write	"  </tr>" & vbNewLine & _
		"</table>" & vbNewLine
if strSiteIntegEnabled = "1" then
  if strSiteRight = "1" then
    Response.Write	"    </td>" & vbNewLine & _
    "    <td valign=""top"">" & vbNewLine
    %><!--#include file="inc_site_right.asp"--><%
  end if
  Response.Write	"    </td>" & vbNewLine & _
  "  </tr>" & vbNewLine
  if strSiteFooter = "1" then
    Response.write  "  <tr>" & vbNewLine & _
    "    <td"
    if strSiteLeft = "1" or strSiteRight = "1" then
      if strSiteLeft = "1" and strSiteRight = "1" then
        Response.write " colspan=""3"""
      else
		Response.write " colspan=""2"""
      end if
    end if
    Response.write ">"
    %><!--#include file="inc_site_footer.asp"--><%
    Response.write "    </td>" & vbNewLine & _
    "  </tr>" & vbNewLine
  end if
  Response.write "</table>" & vbNewLine
end if
response.write "</body>" & vbNewLine & _
		"</html>" & vbNewLine


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Pertinax
Starting Member

23 Posts

Posted - 09 September 2007 :  16:07:13  Show Profile
Ruirib
Thanks very much, that seems to have worked, though I haven't fully tested yet.
Go to Top of Page

ruirib
Snitz Forums Admin

Portugal
26364 Posts

Posted - 09 September 2007 :  16:41:39  Show Profile  Send ruirib a Yahoo! Message
No problem, you're welcome.


Snitz 3.4 Readme | Like the support? Support Snitz too
Go to Top of Page

Loyola05
Starting Member

24 Posts

Posted - 18 January 2008 :  13:11:02  Show Profile  Visit Loyola05's Homepage
I also had trouble finding those lines in v.3.4.06

inc_header.asp - that line was #295 for me
inc_footer.asp - that line was #71 for me

Art
http://www.whyilovechicago.com
Go to Top of Page

JJenson
Advanced Member

USA
2121 Posts

Posted - 18 January 2008 :  13:22:55  Show Profile  Visit JJenson's Homepage
It will be different depending on what changes have been made with mods you have implemented.
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.36 seconds. Powered By: Snitz Forums 2000 Version 3.4.07