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="text/css">
<!--
#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="result1" style="position:absolute; width:200px; height:144; z-index:5; left: 147px; top: 340px; visibility: hidden"><table align="center"><tr><td><font face="Arial, Helvetica, sans-serif" size="2">Top Up Amount : </font> <form><select name=select><option value="0">Select your amount</option><option value="1">$ 8.50 (£ 6.00)</option><option value="2">$ 15.00 (£ 10.00)</option><option value="3">$ 17.00 (£ 12.00)</option>
</select></form></td></tr></table><p><font face="Arial, Helvetica, sans-serif" size="2"></font></p><p> </p> </div>
----------------------------------------
<input type=radio value=1 name=select1 onClick="MM_showHideLayers('result1','','show')">
----------------------------------------
Note: only when a template is applied that the form object will not show in netscape 4.7
Thank you.
Code as below:
----------------------------------------
<style type="text/css">
<!--
#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="result1" style="position:absolute; width:200px; height:144; z-index:5; left: 147px; top: 340px; visibility: hidden"><table align="center"><tr><td><font face="Arial, Helvetica, sans-serif" size="2">Top Up Amount : </font> <form><select name=select><option value="0">Select your amount</option><option value="1">$ 8.50 (£ 6.00)</option><option value="2">$ 15.00 (£ 10.00)</option><option value="3">$ 17.00 (£ 12.00)</option>
</select></form></td></tr></table><p><font face="Arial, Helvetica, sans-serif" size="2"></font></p><p> </p> </div>
----------------------------------------
<input type=radio value=1 name=select1 onClick="MM_showHideLayers('result1','','show')">
----------------------------------------
Note: only when a template is applied that the form object will not show in netscape 4.7
Thank you.