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)
 Customization Request
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

paypaldev
Starting Member

10 Posts

Posted - 11 August 2003 :  12:35:23  Show Profile
Hello all,
Great site, great product, and great community!

We've been running our board and it has performed very well. I am having a very tiny problem with the layout of my forum.

I would like to place the forum into a 2 column table. The right hand column will be 230 pixels wide for some sponsored links. The left hand side will be for the forum.

The problem is, that I cannot find the insertion points for my table. If someone can take a look, I'd appreciate it. Else, we could throw a couple of bucks to you for it. Should be no more than 5 minutes of work for someone who knows the forum code well.

We would need this done on two pages, the default.asp and the forum.asp pages The split should occur after the login table and before the forum page count/navigation tables. Here is the url: http://paypaldev.org/
Feel free to contact me directly.

Thank you,

Admin
PayPalDev.org

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 11 August 2003 :  13:49:59  Show Profile
in inc_header.asp look for the following lines (427 to 432):
		"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""95%"">" & vbNewLine
'########### GROUP Categories ########### %>
<!--#INCLUDE FILE="inc_groupjump_to.asp" -->
<% '######## GROUP Categories ##############
Response.Write	"  <tr>" & vbNewLine & _
		"    <td>" & vbNewLine

Add the following code above it:
		"<table align=""center"" border=""0"" cellPadding=""0"" cellSpacing=""0"" width=""95%"">" & vbNewLine & _
		"  <tr>" & vbNewLine & _
		"    <td width=""230"" valign=""top"">" & vbNewLine & _
		"      your left-side info here" & vbNewLine & _
		"    </td>" & vbNewLine & _
		"    <td valign=""top"">" & vbNewLine & _

The line in red is where you set the width and valign of the left-side column.
The line in red is where you enter the information that should go on the left.

in inc_footer.asp find the following lines (75 to 78):
Response.Write	"  </tr>" & vbNewLine & _
		"</table>" & vbNewLine & _
		"</font>" & vbNewLine & _
		"</body>" & vbNewLine & _

Add the following code after the line in red:
		"    </td>" & vbNewLine & _
		"  </tr>" & vbNewLine & _
		"</table>" & vbNewLine & _


That ought to do the trick, but make a backup of your files before you make these changes, just in case.
Go to Top of Page

paypaldev
Starting Member

10 Posts

Posted - 11 August 2003 :  16:44:51  Show Profile
BEAUTIFUL!

Thank you.
Go to Top of Page

Roland
Advanced Member

Netherlands
9335 Posts

Posted - 11 August 2003 :  17:27:07  Show Profile
You're very welcome
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