Omit HTML form submit value?

wopr2010

New member
if the submit button is an image, u'll have to edit the words out of the image. If it is an HTML button, look for the word "Submit" in the code, and change it to what you want it to say. don't be afraid to tweek code, just make sure u remember what u changed in case u messed up.
 
I've added a background image to the submit button, but I do not know how to get rid of the submit text.

How would I accomplish this, while still keeping it 'no style' friendly?
I need to keep it 'no style' friendly, meaning if someone is viewing the page without any page style, there will still be a value on the button, instead of just a blank input submit.
 
put

value=""

inside the tag. Make sure you specify the size of the button, and set it to block style display in the CSS for it though, because it will shrink to nearly nothing in size without the text.
 
Back
Top