When you have a submit button, the text usually defaults to e.g Create Foo or Udate Foo.
Is it possible to display the same text just in lowercase letters?
E.g, something like this:
<%= f.submit initial_text.downcase %>
Is there some way to achieve this, apart from passing strings to the form?
You could always set a CSS class to the button that does
text-transform:lowercase;f.submit :class => "lowercase-button"