Author |
Topic |
D3mon
Senior Member
United Kingdom
1685 Posts |
|
shawdzee
New Member
USA
67 Posts |
Posted - 04 November 2003 : 15:44:25
|
Latest release of Your Code?
Could you tell me where in topic.asp you made the change?
Thanks.
|
be well, shawdzee |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 04 November 2003 : 15:57:06
|
I would, but I can't remember... Are you using the very latest version of the LB forums (21.Oct 2003)? |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 04 November 2003 15:58:46 |
|
|
zeth
Junior Member
United Kingdom
117 Posts |
Posted - 20 November 2003 : 17:31:21
|
[Please ignore as the issue has been fixed by D3mon and the download has been updated]
Hello, Thankyou D3mon for all your hard work in making the LB Forum happen, it is a big step forward for the Snitz Forum. I am now in the process of putting back all my Mods so I can use it on my main site.
The reply/new topic interface is a little different from the Old Fashioned Snitz one. Firstly the whole reply console is left aligned not centre aligned. Secondly the formatting buttons are not as well laid out as in the Old Fashioned Snitz.
I have observed these two phenomenons on my own test site and at waynemr's site. These problems appear both in Internet Explorer and Firebird.
Obviously this is not a 'mission critical' problem but I wondered if you D3mon or anyone else knows how to fix these two issues? As it does hinder the presentation.
Also How do I implement Vodkafish's idea of stripping down the post_info.asp page?
Thankyou for your time.
P.S. Also how about a cooler name for the LB Snitz Distribution. How about 'Snitz Angel' or 'Snitz Roadrunner'? Perhaps we should also share converted MOD files so we don't have to keep reinventing the wheel... |
THEOLOGY.ME.UK CROSSRING.COM |
Edited by - zeth on 27 November 2003 07:46:02 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 24 November 2003 : 08:07:12
|
quote: Originally posted by zeth The reply/new topic interface is a little different from the Old Fashioned Snitz one. Firstly the whole reply console is left aligned not centre aligned. Secondly the formatting buttons are not as well laid out as in the Old Fashioned Snitz.
I'll try to get a look at these issues.
quote: Originally posted by zeth Also How do I implement Vodkafish's idea of stripping down the post_info.asp page?
I've no idea I'm afraid. Contact Vodkafish for more info.
quote: Originally posted by zeth P.S. Also how about a cooler name for the LB Snitz Distribution. How about 'Snitz Angel' or 'Snitz Roadrunner'? Perhaps we should also share converted MOD files so we don't have to keep reinventing the wheel...
Decided on Snitz 'SpeedBall' as the new name for this version. Nice idea. I'd welcome any new versions of MODs specifically for Snitz SpeedBall. A link to a guide for building MODs for SpeedBall is included in the first post of this thread. |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 24 November 2003 08:09:03 |
|
|
DavidRhodes
Senior Member
United Kingdom
1222 Posts |
Posted - 24 November 2003 : 09:13:05
|
D3mon, regarding the CSS issue, have you considered an online CSS editor, eg open the CSS file using FSO into a TEXTAREA, edit it and save using FSO again. I think some of the php forum do this. |
The UK MkIVs Forum |
|
|
zeth
Junior Member
United Kingdom
117 Posts |
Posted - 24 November 2003 : 09:23:36
|
Great name D3mon!
When I finish 'Css-ing' all my Mods and I have uploaded it to my website, I will put 'Snitz Speedball' in my inc_footer. |
THEOLOGY.ME.UK CROSSRING.COM |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 24 November 2003 : 11:46:36
|
quote: Originally posted by DavidRhodes
D3mon, regarding the CSS issue, have you considered an online CSS editor, eg open the CSS file using FSO into a TEXTAREA, edit it and save using FSO again. I think some of the php forum do this.
Not considering FSO ATM as some remote-hosted users will not have access to FSO feature. |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 24 November 2003 11:48:20 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 26 November 2003 : 04:27:30
|
quote: Originally posted by shawdzee I think the problem is with topic.asp
I think the topic.asp closes ONE too many tables . Does that make sense?
Found the problem, here's the fix:
Find these lines in topic.asp (approx line #723) and remove the lines in red:
"</table>" & _
"</td>" & _
"</tr>" & _
"</table>" & _
"</td>" & _
"</tr>" & _
"</table>"
if maxpages > 1 then
[Updated Speedball Download]
|
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 26 November 2003 : 05:03:11
|
quote: Originally posted by zeth The reply/new topic interface is a little different from the Old Fashioned Snitz one. Firstly the whole reply console is left aligned not centre aligned. Secondly the formatting buttons are not as well laid out as in the Old Fashioned Snitz.
In post.asp find these lines (approx line #1324), remove the lines in red:
if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" then
Response.Write "</td>" & _
"</tr>" & _
"</table>" & _
"<table class=""TableBorderColor"" border=""0"" width=""95%"" cellspacing=""0"" cellpadding=""4"" align=""center"">" & _
"<tr>" & _ Now, add the words in green:
if strRqMethod = "Reply" or _
strRqMethod = "TopicQuote" or _
strRqMethod = "ReplyQuote" then
Response.Write "<table class=""TableBorderColor"" border=""0"" width=""95%"" cellspacing=""0"" cellpadding=""4"" align=""center"">" & _
"<tr>" & _ Again in post.asp, find these lines (approx line #431) and add the code in green:
Response.Write "<div align=""center""><table border=""0"" width=""100%"" align=""center"">" & _
"<tr>" & _
"<td class=""DefaultFontSize"" width=""33%"" align=""left"">" & _
Again in post.asp, find these lines (approx line #1318) and add the code in green:
Response.Write " <input name=""Reset"" type=""reset"" value=""Reset Fields"" tabindex=""-1""></td>" & _
"</tr>" & _
"</form>" & _
"</table></div>" & _
"<br />" [Updated Speedball Download] |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 26 November 2003 05:25:37 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 26 November 2003 : 05:24:34
|
To fix the button spacing, in inc_post_buttons.asp find these lines and add text in green:
(approx) line #61:
"<a href=""Javascript:right();"" tabindex=""-1"">" & getCurrentIcon(strIconEditorRight,"Align Right","align=""top""") & "</a>& nbsp;" & _ (approx) line #62:
"<a href=""Javascript:hr();"" tabindex=""-1"">" & getCurrentIcon(strIconEditorHR,"Horizontal Rule","align=""top""") & "</a>& nbsp;" & _ (approx) line #68:
Response.Write "& nbsp;<a href=""Javascript:showcode();"" tabindex=""-1"">" & getCurrentIcon(strIconEditorCode,"Insert Code","align=""top""") & "</a>" & _ Note: Also, remove the additional space between & and nbsp; [Updated Speedball Download] |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 26 November 2003 05:38:13 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 26 November 2003 : 06:45:40
|
quote: How do I get rid of the default gap between the browser edge and the forums using Snitz Speedball?
Find these lines in inc_header.asp and add the code in green:
"</head>" & _
"<body class=""PageBGImageURL PageBGColor DefaultFontFace DefaultFontColor"" style=""padding:0px;margin:0px;"">" & _
"<a name=""top""></a>"
if strSiteIntegEnabled = "1" then |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 26 November 2003 06:51:25 |
|
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 26 November 2003 : 06:49:33
|
quote: How can I set the overall width of the forums using Snitz Speedball (with Site Integration features enabled)?
Find these lines in inc_header.asp and add the code in green:
if strSiteIntegEnabled = "1" then
response.write "<table width=""760"" border="""
if strSiteBorder = "1" then Note: As an example, setting a width of 760 should fit well when browsing at 800x600. |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
Edited by - D3mon on 26 November 2003 06:54:30 |
|
|
zeth
Junior Member
United Kingdom
117 Posts |
|
D3mon
Senior Member
United Kingdom
1685 Posts |
Posted - 27 November 2003 : 08:39:21
|
Nice work. I hope OWM approves.
Don't forget to optimize all the files in the MOD e.g.Response.Write " <tr>" & vbNewLine & _ should become:Response.Write "<tr>" & _ and" " & getCurrentIcon(... can be trimmed down to:getCurrentIcon(... etc. This will maximise those important bandwidth savings. |
Snitz 'Speedball' : Site Integration Mod : Friendly Registration Mod "In war, the victorious strategist only seeks battle after the victory has been won" |
|
|
Topic |
|