‘In Touch’ plugin display of submit button in IE
April 20, 2009 by Edward
Filed under Geek Notes, WordPress
If you use the “In Touch” contact form plugin for WordPress, you might have noticed that the Submit button is incorrectly placed (over top of the text entry box) when viewed using some versions of Internet Explorer, though it seems to display just fine in Firefox. While it would be nice if everyone in the world came to their senses and dumped IE, the reality is that a majority still use the thing.
Here’s the solution to this display problem, thanks to Dan Lai:
Locate the file intouch.php (found in your plugins folder) and open it with a text editor. Locate the following section:
div.intouch div.inputfield input.submitbutton {
width: auto !important;
padding: 2px;
margin-left: 10px;
left: 25%;
position: absolute;
}
Change:
position: absolute;
to:
position: relative;
Save it, and everything should be good.





