Forum Moderators: open
> opened and closed properly
Typically this is the problem when your form elements are not showing in Netscape. What version of Netscape is it? Can you sticky me with a URL for review?
Sticky = Sticky Mail. Just click on my user profile link at left, then click on my Member name, that will open a new Sticky addressed to me.
I'll double check to make sure that my tables are not wrong but i doubt that very much...
I just tough that there was something obvious causing netscape to act dumb once again.
thanks anyways!
Here is a related thread that you might find useful, though the problem is slightly different:
[webmasterworld.com...]
Glas to have you with us!
I appears that Netscape does not like having a <div> tag WITH STYLE inside a form but outside of any tables.
This does NOT work :
<form name=test>
<div id="bla" style="position:absolute;">div tag</div>
<input type=text name=cool>
</form>
This work :
<form name=test>
<table>
<tr><td>
<div id="bla" style="position:absolute;">div tag</div>
</td></tr>
</table>
<input type=text name=cool>
</form>
My day is done.
Enjoy! :)