Form Buttons not showing up on web...

oxman67

New Member
I created a form, put a table in the form, and then put text fields and such in the table. I put a submit and a reset button in the form, actually in a cell of the table (it is within the </form> tags... when I check it in live view they show up, when I just hit F12, they show up in my browser, but when I access the page containing this page containing the form from my home page they do not show up.

Any ideas?
 

oxman67

New Member
Here is the codeeeee....

<body>

<div class="container">
<div class="sidebar1">
<ul class="nav">
<li></li>
<li></li>
</ul>
<!-- end .sidebar1 --></div>
<div class="content">
<div>
<p>Please Fill out the information below to receive an invitation to the official launch of the new </p>
<p>Careers Find Me!</p>
<p>&nbsp; </p>
</div>
<form id="form1" name="form1" method="post" action="web_form_process.php">
<table width="100%" border="0" cellpadding="6">
<tr>
<td><label for="first_name">First Name:</label></td>
<td><input name="first_name" type="text" id="first_name" size="40" maxlength="40" /></td>
</tr>
<tr>
<td><label for="last_name">Last Name</label></td>
<td><input name="last_name" type="text" id="last_name" size="40" maxlength="40" /></td>
</tr>
<tr>
<td><label for="email">Email:</label></td>
<td><input name="email" type="text" id="email" size="40" maxlength="100" /></td>
</tr>
<tr>
<td><label for="job">Career by Catagory</label></td>
<td><select name="job" id="job">
<option value="ALL" selected="selected">- Select a Job Category -</option>
<option value="Accounting">Accounting</option>
<option value="Admin-Clerical">Admin - Clerical</option>
<option value="Automotive">Automotive</option>
<option value="Banking">Banking</option>
<option value="Biotech">Biotech</option>
</select></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td></td>
<td><input type="submit" name="submit" id="submit" value="Submit" />
<input type="reset" name="reset" id="reset" value="Reset" /></td>
</tr>
</table>
</form>
<h1>&nbsp;</h1>
<!-- end .content --></div>
<div class="sidebar2">
<h4>&nbsp;</h4>
<!-- end .sidebar2 --></div>
<!-- end .container --></div>
</body>
 
Don't understand

but when I access the page containing this page containing the form from my home page they do not show up.

I don't really understand what you mean by the above. Your <body> section is basically a complete page when you add a <head> section and enclose it all in <html> and </html> tags.
 

oxman67

New Member
When I access the page containing the form with the buttons from my home page they do not show up... when i preview in the browser (F12) they show up, as well as in live view...
 
Possibly, the larger container or window where the form is displayed is not high enough to contain it all so the buttons are getting cut off. This can happen if you are displaying it in an iframe, for instance. Check that possibility, but otherwise I think we would need to see more of your code. Does anyone else have an answer?
 
Top