This may be simpe but cant seem to get it working. I have the following submit button
<%= f.submit 'Send Message', class: 'btn submit', id: 'validForm' %>
and I want to put an icomoon image within the button
<span class="icon-envelope"></span>
But how do i get the span class within the button.. ?
Thanks
Use button_tag and put the span within the button in that way
<%= button_tag(type: 'submit', class: "btn submit", id: 'validForm') do %>
<span class="icon-envelope"></span> Send Message
<% end %>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With