PDA

View Full Version : Can't login with Netscape 6


Aldreis
Thu 23rd Nov '00, 6:16pm
Hello, John :)
This is a small one.
( I'm repeating this to help you organizing the bug list.
Please, feel free to delete, if it doesn't fit here... )

Issue: The login input fields are rendered out of screen in Netscape 6.
Tested: Final version, in Win 98, NT and Linux.

http://www.aldreis.net/nn6.gif

The picture shows the browser rendering 2.0 ( upper half ) and 1.1.4 ( bottom ).

Aldreis
Thu 23rd Nov '00, 7:51pm
I had a look at the code. Please find this:

{!-- BEGIN TEMPLATE: forumhome_logincode --}
{table border="0" cellpadding="0" cellspacing="0"}
{form action="member.php" method="post"}
{input type="hidden" name="sessionhash" value="..."}
{td}{td nowrap}
...............
{/td}{/tr}
{/form}
{/table}

Change the first TD to TR and move the FORM block to the inside of the TD tags:

{!-- BEGIN TEMPLATE: forumhome_logincode --}
{table border="0" cellpadding="0" cellspacing="0"}
{tr}{td nowrap}
{form action="member.php" method="post"}
{input type="hidden" name="sessionhash" value="..."}
...............
{/form}
{/td}{/tr}
{/table}

I hope it helps.:) You could delete this thread, if you like...