Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

form object in hidden layer not displayed when in template

Status
Not open for further replies.

NBickhan

Programmer
Apr 9, 2001
6
GB
I have a form object (drop down menu with form tag) in a hidden layer. The page works and shows the drop down menu when the layer is set to visible in all browsers but when I apply a template to the page, the drop down menu decides not to show in netscape 4.7 but brave enough to appear in netscape6 and IE. Any solutions to the problem welcomed.
Code as below:
----------------------------------------
<style type=&quot;text/css&quot;>
<!--
#result1{POSITION:absolute;WIDTH:400px;HEIGHT:400px;VISIBILITY:hidden;TOP:740px;LEFT:147px;Z-INDEX:5;; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; clip: rect( )}
-->
</style>
----------------------------------------
<div id=&quot;result1&quot; style=&quot;position:absolute; width:200px; height:144; z-index:5; left: 147px; top: 340px; visibility: hidden&quot;><table align=&quot;center&quot;><tr><td><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;>Top Up Amount : </font> <form><select name=select><option value=&quot;0&quot;>Select your amount</option><option value=&quot;1&quot;>$ 8.50 (£ 6.00)</option><option value=&quot;2&quot;>$ 15.00 (£ 10.00)</option><option value=&quot;3&quot;>$ 17.00 (£ 12.00)</option>
</select></form></td></tr></table><p><font face=&quot;Arial, Helvetica, sans-serif&quot; size=&quot;2&quot;></font></p><p> </p> </div>
----------------------------------------
<input type=radio value=1 name=select1 onClick=&quot;MM_showHideLayers('result1','','show')&quot;>
----------------------------------------
Note: only when a template is applied that the form object will not show in netscape 4.7
Thank you.
 
i may be wrong, but i don't think netscape 4.7 supports the <div> tag, although <layer> does work...might be wrong though...

Rob
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top