I have been using submit tag helpers.
<%= submit_tag 'Submit' %>
I have an image called my_image.png.
How can I make the submit button be an image?
I tried:
<%= submit_tag '#{image_tag("Login_small.png", :width=>70)}' %>
But that doesn't work..