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 DEV-Group
 DEV Bug Reports (Open)
 BUG (All): Cosmetic error at post.asp
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

eleven
Starting Member

Turkey
32 Posts

Posted - 19 June 2001 :  16:07:10  Show Profile
Post.asp has an cosmetic error. At the top of the table a black line is seen.

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 19 June 2001 :  16:57:33  Show Profile
I don't see a black line. What browser are you using?
Go to Top of Page

redbrad0
Advanced Member

USA
3725 Posts

Posted - 19 June 2001 :  17:25:42  Show Profile  Visit redbrad0's Homepage  Send redbrad0 an AOL message
im guessing he is talking about the border. a guess to what is causing it is....


<table border="0" cellspacing="0" cellpadding="0" align=center>
<tr>
<td bgcolor="#000000">
<table border="0" cellspacing="1" cellpadding="1">

<form name="Screensize" method="POST" action="post.asp?method=Reply&FORUM_ID=11&CAT_ID=1&Forum_Title=DEV+Bug+Reports+%28Open%29&TOPIC_ID=11579&REPLY_ID=+&Topic_Title=BUG+%28All%29%3A+Cosmetic+error+at+post%2Easp">
<input name="Method_Type" type="hidden" value="Reply">
<input name="Type" type="hidden" value="">
<input name="REPLY_ID" type="hidden" value="">
<input name="TOPIC_ID" type="hidden" value="11579">
<input name="FORUM_ID" type="hidden" value="11">
<input name="CAT_ID" type="hidden" value="1">
<input name="Author" type="hidden" value="">
<input name="Mod_ID" type="hidden" value="">
<input name="Cat_Title" type="hidden" value=" ">
<input name="FORUM_Title" type="hidden" value="DEV Bug Reports (Open)">
<input name="Topic_Title" type="hidden" value="BUG (All): Cosmetic error at post.asp">
<input name="M" type="hidden" value="">
<input name="Refer" type="hidden" value="http://forum.snitz.com/forum/topic.asp?TOPIC_ID=11579&FORUM_ID=11&CAT_ID=1&Topic_Title=BUG+%28All%29%3A+Cosmetic+error+at+post%2Easp&Forum_Title=DEV+Bug+Reports+%28Open%29">
<input name="cookies" type="hidden" value="yes">

<tr>
<td bgColor="#8199DA" noWrap vAlign="top" align="right"><font face="Verdana, Arial, Helvetica" size="2"><b>Screensize:</b></font></td>


if you can put the form tags along with the hidden input values up a little more out of the table...

example...


<table border="0" cellspacing="0" cellpadding="0" align=center>
<tr>
<td bgcolor="#000000">
<form name="Screensize" method="POST" action="post.asp?method=Reply&FORUM_ID=11&CAT_ID=1&Forum_Title=DEV+Bug+Reports+%28Open%29&TOPIC_ID=11579&REPLY_ID=+&Topic_Title=BUG+%28All%29%3A+Cosmetic+error+at+post%2Easp">
<input name="Method_Type" type="hidden" value="Reply">
<input name="Type" type="hidden" value="">
<input name="REPLY_ID" type="hidden" value="">
<input name="TOPIC_ID" type="hidden" value="11579">
<input name="FORUM_ID" type="hidden" value="11">
<input name="CAT_ID" type="hidden" value="1">
<input name="Author" type="hidden" value="">
<input name="Mod_ID" type="hidden" value="">
<input name="Cat_Title" type="hidden" value=" ">
<input name="FORUM_Title" type="hidden" value="DEV Bug Reports (Open)">
<input name="Topic_Title" type="hidden" value="BUG (All): Cosmetic error at post.asp">
<input name="M" type="hidden" value="">
<input name="Refer" type="hidden" value="http://forum.snitz.com/forum/topic.asp?TOPIC_ID=11579&FORUM_ID=11&CAT_ID=1&Topic_Title=BUG+%28All%29%3A+Cosmetic+error+at+post%2Easp&Forum_Title=DEV+Bug+Reports+%28Open%29">
<input name="cookies" type="hidden" value="yes">

<table border="0" cellspacing="1" cellpadding="1">
<tr>
<td bgColor="#8199DA" noWrap vAlign="top" align="right"><font face="Verdana, Arial, Helvetica" size="2"><b>Screensize:</b></font></td>


Brad
Go to Top of Page

eleven
Starting Member

Turkey
32 Posts

Posted - 20 June 2001 :  01:33:05  Show Profile
Hi,
I was using Snitz Forums 2000 v3.1 Service Release 4 before. Now, I'm using the latest alpha forum code. They both have a flat black line at the top of the table. (But, I can not see this line at that forum!)

You can look at the captured images of my test forums:
* 31sr4: http://www.onlinedergi.net/bug/post_31sr4.gif
*32a06: http://www.onlinedergi.net/bug/post_32a06.gif
*Eastpasco forum: http://www.onlinedergi.net/bug/post_eastpasco.gif

I test them with Windows 2000, PWS!

And...

I have a solution for that problem.

The original dirty code:

<table border="0" cellspacing="0" cellpadding="0" align=center> <tr> <td bgcolor="#000000"> <table border="0" cellspacing="1" cellpadding="1">

The modified clean code:

<table border="0" cellspacing="0" cellpadding="0" align=center> <tr> <td> <table border="0" bgcolor="#000000" cellspacing="1" cellpadding="1">

Thanks...




Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 20 June 2001 :  02:08:50  Show Profile
The original "dirty" (as you put it) code is correct. If you take a look at all of the forum's code, you won't see the use of bgcolor=" " in any of the <table> tags.

The problem is because of the placement of the <form> tag like shown above.

Also, upgrading from IE 5.0 to IE 5.5 will solve the problem as well. I see the black bar in IE 5.0 but not in IE 5.5.
Go to Top of Page

eleven
Starting Member

Turkey
32 Posts

Posted - 20 June 2001 :  02:36:50  Show Profile
Sorry for the "dirty"... I really did not mean that. So sorry... It's because of my bad English.

I have modified the code as I noticed above and it works well.

Thanks for your interest.

Go to Top of Page

RichardKinser
Snitz Forums Admin

USA
16655 Posts

Posted - 20 June 2001 :  02:52:09  Show Profile
No need to be sorry. Sorry if you took my post the wrong way.
Go to Top of Page

HuwR
Forum Admin

United Kingdom
20595 Posts

Posted - 24 June 2001 :  11:09:21  Show Profile  Visit HuwR's Homepage
Does this require a fix ?

Go to Top of Page

eleven
Starting Member

Turkey
32 Posts

Posted - 24 June 2001 :  15:56:21  Show Profile
quote:

Does this require a fix ?



I think this question is for Mr. Kinser. But if you ask my opinion, it should! I want to see this (post.asp) page well with IE 5.0...



Thanks...

Burak Tuyan aka eLeVeN
Go to Top of Page

Davio
Development Team Member

Jamaica
12217 Posts

Posted - 08 December 2001 :  20:14:48  Show Profile
I don't see the fix for this in the v3.3.03 files.
But then again, I don't see any black line on the post.asp page, both with IE6 and NN4.7.

Anyone else notice this?
Or can we declare this was fixed somehow...?

- David
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.12 seconds. Powered By: Snitz Forums 2000 Version 3.4.07