Hi, I have an image input type inside a form that needs certain positioning. It has to display the same in both IE and FF. I've used class for the input, I've used div style, and still no good result. Below is the form I need styled. <form target="paypal" action="https://" method="post"> <input name="submit2" type="image" src="images/add.gif" alt="PayPal" align="right" border="0" /> </form> Code (markup):
Have you tried <form target="paypal" action="https://" method="post"> <input name="submit2" type="image" src="images/add.gif" alt="PayPal" align="center" border="0" /> </form> Code (markup): Or is that not what you mean?