I have an html form and the submit button says "submit query". How can I remove this text? I am using a background image for the submit button and this text is messing up the button :( Any help would be greatly appreciated.
|
If you do not give your submit button a value
instead of something like
it will display 'submit query' by default. Try giving it a space |
|||
|
|
|
use:
Leave the value blank and there will be no words on the button. Since you're using a background image a for the button, give the button a height and width, otherwise it will display as a small gray blip (because there are no words on the button). |
|||
|
|
|
You just have to give it a value:
In the example above, UPDATE: You can do this to not display any text.
|
||||
|
|
|
Not sure if this was relevant then, but we would use type="image" rather than type="submit" |
|||
|
|
|
Background images are not content. If you want to use an image to tell people what a submit button will do, use a real image. As a bonus that allows you to provide alternative text for users who cannot see the image (e.g. because it failed to load or because they are blind).
|
|||
|
|
|
Just put a space between the value quotes. Simple fix. Read the question before you reply. You may actually help someone. |
|||
|
|
|
Unfortunately, this does not work, at least not in a CMS. I've tried the space and the EDIT : I added |
||||
|
|
|
I had this issue as well. If you don't set a value for a submit button it defaults to "Submit Query". I assume you are using an image for your submit button since you have the default value. If you want to fix it for IE8 add a text indent using CSS which will push the default value off the screen.
If you want to fix it for IE9 you also need to change the default value because the text-indent doesn't work :( in your submit button add the following:
I found this to work without a non-breaking space and tested it to my satisfaction on the IE's on browserstack. If you want to use the breaking space, feel free; I'll include the code.
Also, thank you to the other stack-responders, you helped me fix this issue on IE9. Also you inspired me to post my findings here and possibly help others! |
||||
|
|
|
use attribute |
|||
|
|
|
nothing just do this
a slash with a space and u will not see the Submit or Submit Query no need to give value |
|||
|
|

