I have a contact form that renders in the proper location in Safari, off a bit in Firefox and completely wacked in ie. I am pretty novice on web design so any help would be appreciated.
here is my form text but i suspect it is something with the css.
and the link to the page
www.dscomputerrepair.com/contact.html
here is my form text but i suspect it is something with the css.
Code:
<div>
<form action="sendresults.php" method="post" id="Contact form" style="margin:0px; font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px; width:600px;" onSubmit="MM_validateForm('Last Name','','R','Email Address','','RisEmail','Phone Number','','RisNum');return document.MM_returnValue">
<INPUT name="Last Name" type="text" id="Last Name" onFocus="if(this.value == 'Last Name') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Last Name';}" value="Last Name" />
<INPUT name="First Name" type="text" value="First Name" onFocus="if(this.value == 'First Name') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'First Name';}" />
<INPUT name="Email Address" type="text" id="Email Address" onFocus="if(this.value == 'Email Address') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Email Address';}" value="Email Address" />
<INPUT name="Phone Number" type="text" id="Phone Number" onFocus="if(this.value == 'Phone Number') {this.value = '';}" onBlur="if (this.value == '') {this.value = 'Phone Number';}" value="Phone Number" />
<br />
<textarea name="comments" cols="45" rows="10">What can I help you with?</textarea>
<br />
<br />
<input name="Submit" type="Submit" onClick="MM_validateForm('Last Name','','R','First Name','','R','Email Address','','RisEmail','Phone Number','','R');return document.MM_returnValue" /><input name="" type="reset">
</form>
</div>
and the link to the page
www.dscomputerrepair.com/contact.html