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: General / Classic ASP versions(v3.4.XX)
 Fixed Width
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

crashkillsvince
Starting Member

1 Posts

Posted - 17 February 2009 :  20:42:15  Show Profile
How do I force the forum to a fixed width? Sorry about the dumb question.<

Carefree
Advanced Member

Philippines
4207 Posts

Posted - 17 February 2009 :  21:29:43  Show Profile
The simplest method would be to enclose "inc_header.asp"/"inc_header_short.asp" and "footer.asp"/"footer_short.asp" in a table with desired width.

For example: in "inc_header.asp", look for the following lines (appx 35-37):

%>
<!--#INCLUDE FILE="inc_func_common.asp" -->
<%


Immediately following those lines, insert the following:
Response.Write	"<table width=""70%"" align=""center"" border=""0""><tr><td width=""100%"">"


Then, to correspond with "inc_header.asp", you'd need to make a change to "inc_footer.asp". Look for the following lines (appx 71-74):

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


Change them to say:
Response.Write	"  </tr>" & vbNewLine & _
		"</table>" & vbNewLine & _
		"</td></tr></table>" & vbNewLine & _
		"</body>" & vbNewLine & _
		"</html>" & vbNewLine


If you have the events calendar mod installed, you will have to modify that table to match the width you choose. Change the value in red above to match the width you'd like. You can use pixel dimensions (i.e., width=""640"") or a percentage of the web page as shown.<

Edited by - Carefree on 18 February 2009 20:42:47
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.39 seconds. Powered By: Snitz Forums 2000 Version 3.4.07