I want a button with an image in it. I am using this:
But it do
This may work for you, try it and see if it works:
<input type="image" src="/library/graphics/cecb2.gif">
You can style the button using CSS or use an image-input. Additionally you might use the button
element which supports inline content.
<button type="submit"><img src="/path/to/image" alt="Submit"></button>
<a href="#">
<img src="p.png"></img>
</a>
Use <button>
element instead of <input type=button />
You can use some inline CSS like this
<input type="submit" name="submit" style="background: url(images/stack.png); width:100px; height:25px;" />
Should do the magic, also you may wanna do a border:none; to get rid of the standard borders.
<input type= "image" id=" " onclick=" " src=" " />
it works.