Placing image and text inside link_to (Rails) helper?
I added an image inside the link_to
:
<% like = image_tag("like.png", :alt => "like", :class => "like") %> <%= link_to like, vote_up_path(@votable, :votable_type => "Post"), :remote => true, :class => "vote-up default button" %>
How can I do this to place text inside the link and right after the image (for example, on YouTube)?
+6