I must change a link_to tag color without using a CSS class, how can I do? I\'ve tried something such as
<%= link_to item.description, {}, {:style=>\'c
I want to update this topic, because in this time, the syntax is different. In rails 4+, the correct syntax is:
<%= link_to TEXT, URL, class: 'css_class', style: 'color:#FFFFFF' %>