I\'m trying to style a rails link using css using the following code:
<%= link_to \"Learn More\", :controller => \"menus\", :action => \"index\", :
if you do not have a controller action / route necessary for the link, you can pass nil as the placeholder and get the classes to apply as necessary
<%= link_to 'link verbiage', nil, class: 'classes for action tag'%>