Forum Moderators: open

Message Too Old, No Replies

submit button missing in Firefox

IE6 submit button missing in Forefox

         

Georgj

7:22 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



While testing web pages developed in IE6, find that a submit button is missing in Firefox. Was also gone in Netscape until running to emulate IE.

Any ideas?

pageoneresults

7:23 pm on Mar 13, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Hello Georgj, Welcome to WebmasterWorld!

Any ideas?

Are you using some sort of proprietary code for those submit buttons? Possibly a FrontPage dynamic button or something?

Georgj

7:29 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



Code is entered in Frontpage, but is ASP. Here is the snipet in question.

<input type="SUBMIT" value="Add to Cart" name="addtocart">

Another submit with the same structure displays fine in the program.

pageoneresults

7:37 pm on Mar 13, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Can you show us the code surrounding that button please? Just cut and paste the relevant code in your reply. We'll pick it apart to see where the problem is. A missing closing tag somewhere possibly? Have you validated the page? You may find some errors that are most likely the cause of the problem.

Georgj

7:53 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



<div style="left: 818; top: 500; position: absolute; z-index: 7 width: 100">
<table border="0" cellpadding="0" cellspacing="0" width="185">
<tr><td width="185"><p align="center">
<font color="#ffffff" face="Arial" style="font-size: 9pt">

<form method="POST" action="addorder2.asp">
<input TYPE="hidden" NAME="TODO" VALUE="ADD">
<input type="HIDDEN" name="customerid" value="894917797">
<input type="HIDDEN" name="quantity" value="1">

<input type="HIDDEN" name="imagenum" value="158">
<input type="HIDDEN" name="imageformat" value="0">
<input type="HIDDEN" name="imagefile" value="../images3/white-tail-prairie-600.jpg">
<input type="HIDDEN" name="width" value="390">
<input type="HIDDEN" name="height" value="247">
<input type="HIDDEN" name="title" value="Whitetail Prairie">
<input type="HIDDEN" name="location" value=" - North Dakota">
<input type="HIDDEN" name="framenum" value="1">
<input type="HIDDEN" name="matnum" value="1">

<input type="HIDDEN" name="sizenum" value="2">
<input type="HIDDEN" name="arglass" value="0">
<input type="HIDDEN" name="totalprice" value="125">
<input type="HIDDEN" name="shipping" value="10">
<input type="HIDDEN" name="sizedesc" value="8 in. x 10 in.">
<input type="HIDDEN" name="framedesc" value="Ambience Walnut">
<input type="HIDDEN" name="matdesc" value="Mist/White Double Mat">


<input type="SUBMIT" value="Add to Cart" name="addtocart" style="z-index: 8">


</form></TD></tr></table></font></div>

Georgj

7:56 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



one other piece of info: The area where the button is to be is covered by a gif image. If I don't display the gif, the button seems to be there...is it getting covered by the gif (which has a z-index of 6)?

pageoneresults

8:00 pm on Mar 13, 2006 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Is there a reason why you have the gif covering the Submit button?

Georgj

8:02 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



covering may be the wrong wording. The gif gets loaded first and has some hyperlinks to jump to other pages. The submit button is placed over a area of the gif that is empty. In IE6 and Netscape, it shows up fine, but FF seems to have issue with it.

Georgj

8:05 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



did some quick testing. If I move the button outside of the gif boundary, it is there. Must be a issue with z-order?

Georgj

8:12 pm on Mar 13, 2006 (gmt 0)

10+ Year Member



Found the little bugger...missing a ";" after the z-index value as shown below.

<div style="left: 818; top: 500; position: absolute; z-index: 7 width: 100">

Thanks for the help.