I am implementing a design that uses custom styled submit-buttons. They are quite simply light grey buttons with a slightly darker outer border:
input.button
At least in IE7 you can style the border althogh you can't remove it (set it to none). So setting the color of the border to the same color that your background should do.
.submitbutton { background-color: #fff; border: #fff dotted 1px; }
if your background is white.