Firstly, sorry if this is a basic question - I'm pretty new to rails. I've created a very basic rails application using the standard scaffold. I have two CSS files - one global (global.css) and one that is page specific (in this example, ammos.css). The global CSS has most of the CSS design and the local file has code for the UI element positioning on that page. I have the following code in the head section of the application.html.erb file (under the "views" folder): <head> <title>Outpost Evolution</title> <link rel="stylesheet" type="text/css" href="/stylesheets/global.css"> <%= yield :head %> </head> Then I have the following code in the "_form.html.erb" file that was generated when I generated the scaffold. <% content_for :head do %> <link rel="stylesheet" type="text/css" href="/stylesheets/ammos_new.css"> <% end %> The CSS settings show properly if I use the URL for the "/ammos/new" page directly in the browser. However, when I go to the "/ammos" page and then click the "New" link, the local CSS settings do not show up. The page behaves as if they do not exist. Would anyone know why this occurs and how it can be avoided? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/d114816fdc03850ddf43987d0489ce60%40ruby-forum.com. For more options, visit https://groups.google.com/groups/opt_out.