I\'m trying to style a rails link using css using the following code:
<%= link_to \"Learn More\", :controller => \"menus\", :action => \"index\", :
Try new argument convention:
<%= link_to 'Learn More', 'menus#index', class: 'btn btn-inverse' %>