My form is overlaying a "main content background img" the problem im getting is with the custom submit button. I set it(the forms submit button) as a background img png file which has transparencies in the corners instead of the standard gray button. for some reason when an img button is place over "or inside" of another image the transparency stops working. My question is how do i get around this? or any other suggestions u might have? View attachment 48781
Use an input type of "image" instead of a standard form button. <input type="image" src="buttonimage.gif" name="submit"/> Or, alternatively, make any image or text into a submit button using a little bit of javascript ... <a href="#" onClick="document.FORM NAME.submit()">Your image or text here</a>