[Rails] Re: rails form_for submit button

2009-08-17 Thread JL Smith
<%= chapter_form.submit "Create", :class => "my-css-button-class" -%> --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk@googlegroups.com

[Rails] Re: rails form_for submit button

2009-08-15 Thread Rails List
Ritvvij wrote: > Hi, > > Presently the submit button is coming as a button in below case. > > <% form_for @chapter do |chapter_form| %> > ... labels > ... text_areas.. > <%= chapter_form.submit 'Create' %> > > I want to build a custom button in CSS and show that instead of the > button. > > Ca