I added an icon folder within my assets/images
folder for my project in rails.
/assets
/images
/icons
icon1
I am a beginner in RoR. From my understanding image_tag
will look for images in assets/images
. What should I do if I added an icons folder? I want ot keep my images sorted
This is what I currently have
<%= link_to image_tag("facebook.png", alt: "facebook"), 'FB LINK' %>
<%= link_to image_tag("youtube.png", alt: "Subscribe"), 'YOUTUBE LINK' %>
<%= link_to image_tag("twitter.png", alt: "follow"), 'TWITTER LINK' %>
Also, how would I shrink these images to a smaller size?