Forum Moderators: open
input[submit] {
border: 0;
background-color: #fff;
color: #000;
} Assuming your text is black and your background is white. Bear in mind that a) some browsers won't style form controls and b) IE doesn't suport type selectors llike I've used above so you'll want to give your submit buttons a class and use that instead.
Alternatively, an <input type="image"> will also submit, so you might be able to use a graphic with satisfactory results.