Hello Messneremtb,
QUOTE
Everything works great in Firefox, but when you use IE, the buttons don't work.
From
W3Schools:
QUOTE
Always specify the type attribute for the button. The default type for Internet Explorer is "button", while in other browsers (and in the W3C specification) it is "submit".
and
QUOTE
The <button> tag is supported in all major browsers.
Important: If you use the button element in an HTML form, different browsers will submit different values. Internet Explorer will submit the text between the <button> and </button> tags, while other browsers will submit the content of the value attribute. Use the input element to create buttons in an HTML form.
I reason to supposition that the employ of "button", or "submit", or "reset" should be used in an HTML Form, e.g.:
(codes below are exampled in use of HTML - Transitional or Strict)
CODE
<form action="members.html" method="post">
<table>
<tr>
<td><input type="submit" value="Members"></td>
</tr>
</table>
</form>
and not used as a general purpose HTML Link. For a general purpose HTML Link a straight non-graphic link is:
CODE
<a href="http://www.bdcs336.99k.org/members.html">Members</a> <!-- Long Version Address -->
or
CODE
<a href="http://bdcs336.99k.org/members.html">Members</a> <!-- Long Version Address -->
if you'd like to have some graphical depiction of a button (of sorts): Create, or get, an image (bmp, jpg, png, or gif) you'd desire to use for the button (and upload it to your "
images" folder in your web site) and incorporate that image into the general purpose HTML Link like so:
CODE
<a href="http://www.bdcs336.99k.org/members.html"><img src="http://www.bdcs336.99k.org/images/members_button.jpg"></a> <!-- Long Version Address -->
This should help you out I trust, Messneremtb.
Edit: I must've started working on this right after your redeeming last post ... oh well the problem is solved and this is now out in the open as well. Good Luck Messneremtb!