I\'m trying to style a rails link using css using the following code:
<%= link_to \"Learn More\", :controller => \"menus\", :action => \"index\", :
This is how i solved it using another view engine, HAML just in case a fellow developer is having this need
%i= link_to "Add New Blog Post", user_post_edit_new_url(current_user), :class => "fa fa-plus-circle"