Sorry for the slightly noobish question, as I am writing my first rails app.
I get the idea of the layout view, but if you are using them, is there any way to includ
You can add a stylesheet tag inside the head tag of the layout by doing something like this:
layouts/products.html.erb:
... <%= yield :css %> ...
products/edit.html.erb
<% content_for :css do stylesheet_link_tag 'products_edit' end %>